13 lines
517 B
Python
13 lines
517 B
Python
"""SB Manager using UC Mode for evading bot-detection."""
|
|
from seleniumbase import SB
|
|
|
|
with SB(uc=True, test=True) as sb:
|
|
url = "https://gitlab.com/users/sign_in"
|
|
sb.uc_open_with_reconnect(url, 4)
|
|
sb.uc_gui_click_captcha()
|
|
sb.assert_text("Username", '[for="user_login"]', timeout=3)
|
|
sb.assert_element('label[for="user_login"]')
|
|
sb.highlight('button:contains("Sign in")')
|
|
sb.highlight('h1:contains("GitLab.com")')
|
|
sb.post_message("SeleniumBase wasn't detected", duration=4)
|