Python + Selenium - Microsoft 2FA

4.3k Views Asked by At

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), enter image description here 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?

1

There are 1 best solutions below

4
On

Python isn't able to detect the "No" button.

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 if try works or fails.

WebDriverWait(browser, 60).until(
            EC.element_to_be_clickable((By.ID, "idBtn_Back"))
        ).click()

is simply wrong! Try running it on its own:

---------------------------------------------------------------------------
AttributeError                            Traceback (most recent call last)
<ipython-input-13-b43596b524d7> in <module>
      9 
     10 WebDriverWait(driver, 60).until(EC.element_to_be_clickable((By.ID, "i0116")))
---> 11 driver.find_element_by_id("i0116").send_keys("[email protected]").click()
     12 
     13 WebDriverWait(driver, 60).until(EC.element_to_be_clickable((By.ID, "idSIButton9")))

AttributeError: 'NoneType' object has no attribute 'click'

Because you simply can't call .click() on a WebDriverWait's output (which is None).

The following code works fine:

from selenium import webdriver
from selenium.webdriver.common.by import By
from selenium.webdriver.support.ui import WebDriverWait
from selenium.webdriver.support import expected_conditions as EC

driver = webdriver.Chrome(executable_path='path/to/executable')

driver.get("https://login.microsoftonline.com")

WebDriverWait(driver, 60).until(EC.element_to_be_clickable((By.ID, "i0116")))
driver.find_element_by_id("i0116").send_keys("your_emailid")

WebDriverWait(driver, 60).until(EC.element_to_be_clickable((By.ID, "idSIButton9")))
driver.find_element_by_id("idSIButton9").click()

driver.find_element_by_id("i0118").send_keys("your_password")
WebDriverWait(driver, 60).until(EC.element_to_be_clickable((By.ID, "idSIButton9")))
driver.find_element_by_id("idSIButton9").click()

WebDriverWait(driver, 60).until(EC.element_to_be_clickable((By.ID, "idSIButton9")))
driver.find_element_by_id("idSIButton9").click()

In your case, you simply need to change it to:

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")))
        browser.find_element_by_id("idSIButton9").click()

    except:
        sys.exit('Timeout for 2FA approval reached. Try again.')