diff --git a/examples/cdp_mode/raw_consecutive_c.py b/examples/cdp_mode/raw_consecutive_c.py new file mode 100644 index 00000000..5ac1b7aa --- /dev/null +++ b/examples/cdp_mode/raw_consecutive_c.py @@ -0,0 +1,11 @@ +# An example of bypassing 2 consecutive CF CAPTCHAs""" +from seleniumbase import SB + +with SB(uc=True, test=True) as sb: + url = "https://sms-man.com/login" + sb.activate_cdp_mode(url) + sb.sleep(2) + sb.uc_gui_click_captcha() + sb.sleep(2) + sb.uc_gui_click_captcha() + sb.sleep(2)