-
is there a way when using SB to achieve the equivalent to something like this when the browser is already opened? if it not possible using SB is there any other way?
This #3354 works but only for cdp not sure how to init the webdriver connection from there. |
Beta Was this translation helpful? Give feedback.
Replies: 1 comment 2 replies
-
You can use something like: That's fine if you just need to take control of a browser without all the stealth abilities. |
Beta Was this translation helpful? Give feedback.
You can use something like:
chromium_arg='--remote-debugging-port=9222'
to take control of an existing Chrome browser.That's fine if you just need to take control of a browser without all the stealth abilities.
If evading bot-detection is equally important, use the solution in #3354 (comment).