16 lines
669 B
Python
16 lines
669 B
Python
from seleniumbase import SB
|
|
|
|
with SB(uc=True, test=True) as sb:
|
|
url = "https://seleniumbase.io/apps/recaptcha"
|
|
sb.uc_gui_handle_captcha() # Try with TAB + SPACEBAR
|
|
sb.assert_element("img#captcha-success", timeout=3)
|
|
sb.set_messenger_theme(location="top_left")
|
|
sb.post_message("SeleniumBase wasn't detected", duration=3)
|
|
|
|
with SB(uc=True, test=True) as sb:
|
|
url = "https://seleniumbase.io/apps/recaptcha"
|
|
sb.uc_gui_click_captcha('iframe[src*="/recaptcha/"]')
|
|
sb.assert_element("img#captcha-success", timeout=3)
|
|
sb.set_messenger_theme(location="top_left")
|
|
sb.post_message("SeleniumBase wasn't detected", duration=3)
|