I'm trying to log in to Azure DevOps using Python and Selenium. I can enter the username and password just fine, but I have the Microsoft Authenticator App on my phone set to give me a prompt to "approve" or "deny" when trying to log in.
I've tried having Selenium wait until the "No" button element on the stay signed in page is present (see screenshot below),
but it doesn't seem to like it. I took a look at this post which is regarding Google's Authenticator. The solution uses Google Authenticator's secret, along with pyotp. I can't seem to find a way to get a secret from the MS Authenticator, at least for myself. I checked out this guide, but I do not have access to Azure AD.
Here's the code I've tried to wait for the screen after 2FA:
def signin(user, passwd):
# find elements before passing information
username = browser.find_element_by_name('loginfmt')
username.send_keys(user)
username.send_keys(Keys.ENTER)
time.sleep(1)
password = browser.find_element_by_name('passwd')
password.send_keys(passwd)
password.send_keys(Keys.ENTER)
try:
WebDriverWait(browser, 60).until(
EC.element_to_be_clickable((By.ID, "idBtn_Back"))
).click()
finally:
sys.exit('Timeout for 2FA approval reached. Try again.')
Unfortunately, as I briefly mentioned above, even after stay signed in page appears, Python isn't able to detect the "No" button. I don't really care which button is used because the script is using a separate instance of the browser where I'm not signed in.
I've considered setting a long time.sleep()
command, but that seems like a really stupid way to do it. Does anyone have any suggestions?
Trust me whenever I find something weird happening in Python, something that absolutely doesn't make sense, where the program simply doesn't do what it is told, I have always found a
try-except
statement there. And that my friend is your mistake.Also
finally
will always execute. Doesn't matter iftry
works or fails.is simply wrong! Try running it on its own:
Because you simply can't call
.click()
on aWebDriverWait
's output (which isNone
).The following code works fine:
In your case, you simply need to change it to: