Psst.. new poll here.
Psst.. new forums here.
Microsoft is blocking us again (TY IP Reputation!) so just use oauth login instead. :)
Paste
Pasted as Python by IgorL ( 6 years ago )
username = "admin"
password = "admin"
url = "https://testurl.com"
browser = webdriver.Chrome()
browser.get(url)
wait(browser, 10).until(EC.alert_is_present())
alert = browser.switch_to()
alert.send_keys(f'{username}{Keys.TAB}{password}')
alert.accept()
Revise this Paste