-
Currently running this code on a docker server, when I test it locally (with UI), this is what happens:
Here's what I tried doing:
For my search of similar discussions, I've only seen errors from socks proxy that needs authentication, my socks are unauthenticated. |
Beta Was this translation helpful? Give feedback.
Replies: 1 comment 4 replies
-
|
That's using plain UC Mode, which was replaced by CDP Mode over a year ago.
Check out the CDP Mode folder for all the new examples and documentation. |
Beta Was this translation helpful? Give feedback.
That's using plain UC Mode, which was replaced by CDP Mode over a year ago.
sb.uc_open_with_reconnect(url, timeout)was replaced bysb.activate_cdp_mode(url).sb.uc_gui_click_captcha()was replaced bysb.solve_captcha().sb.wait_for_ready_state_complete()is WebDriver-only, which isn't stealthy.Check out the CDP Mode folder for all the new examples and documentation.