-
Notifications
You must be signed in to change notification settings - Fork 1.4k
How to determine correct reconnect time for solving recaptchas in UC mode? #3314
-
How, I was wondering. How are you finding correct value of reconnect param? In tutorials @mdmintz says to find correct value for site, but in examples there is for example reconnect time 6.111. Are you incrementing by 0.001 and check? For me sometimes I get extra pictures to solve even if I use 20 (sometimes)
Beta Was this translation helpful? Give feedback.
All reactions
Regular UC Mode is being replaced by CDP Mode.
Before, you had to guess an optimal reconnect_time
, which depends on internet connection speed.
Replies: 1 comment 2 replies
-
Regular UC Mode is being replaced by CDP Mode.
Before, you had to guess an optimal reconnect_time
, which depends on internet connection speed.
Beta Was this translation helpful? Give feedback.
All reactions
-
but the CDP Mode doesn't have catpcha handler
Beta Was this translation helpful? Give feedback.
All reactions
-
CDP Mode is a subset of UC Mode, so it does have access to UC Mode methods. Eg:
from seleniumbase import SB with SB(uc=True, test=True, locale_code="en", incognito=True) as sb: url = "https://wsform.com/demo/" sb.activate_cdp_mode(url) sb.scroll_into_view("div.grid") sb.uc_gui_click_captcha() sb.sleep(1)
Beta Was this translation helpful? Give feedback.