What is the default mode? #3336
Answered
by
mdmintz
0-harshit-0
asked this question in
Q&A
|
if I do: self.open(url) will this automatically go to self.cdp.open(url) mode? |
Answered by
mdmintz
Dec 13, 2024
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
The default mode is no stealth.
If CDP Mode is already active, then methods such as
self.open(url)will redirect to the CDP Mode equivalent, such asself.cdp.open(url)in that case.