-
| Used below example code but can't bypass Cloudflare CAPTCHA checkbox , anything I missed? from seleniumbase import SB My current setup: | 
Beta Was this translation helpful? Give feedback.
Replies: 1 comment 1 reply
-
| This worked for me: from seleniumbase import SB
with SB(uc=True, test=True) as sb:
    url = "https://seleniumbase.io/apps/turnstile"
    sb.uc_open_with_reconnect(url)
    sb.uc_gui_click_captcha()
    sb.assert_element("img#captcha-success", timeout=3)
    sb.set_messenger_theme(location="top_left")
    sb.post_message("SeleniumBase wasn't detected", duration=3) | 
Beta Was this translation helpful? Give feedback.
This worked for me: