The clicks on the Turnstile checkbox are failing #2885
-
Hi Michael, 'with SB(uc=True, test=True, headless=False, proxy=proxy) as sb:' still fail to bypass CF screen about 40-50% of the time and CF turnstile appears on fet life . com/join . I've tried https://github.com/seleniumbase/SeleniumBase/blob/master/examples/raw_turnstile.py Below is another code I've tried and the relevant log output. Even though the Turnstile appears and the iframe is detected, my script consistently fails to click the checkbox after multiple attempts. Log Output: Code: `def handle_turnstile_challenge(sb, nickname):
Could you please help identify why the clicks on the Turnstile checkbox are failing, or suggest a better approach to handle the Turnstile challenge? Thank you! |
Beta Was this translation helpful? Give feedback.
Replies: 2 comments 2 replies
-
Looks like you're still using |
Beta Was this translation helpful? Give feedback.
-
Hi, |
Beta Was this translation helpful? Give feedback.
Looks like you're still using
uc_click()
to click CF checkboxes. That's the old way, which is no longer effective. Useuc_gui_handle_cf()
now. See #2865 for details.