Automate Google 2FA with Python and Selenium
Automate Google 2FA with Python and Selenium
Are you tired of do Google 2FA login every time in Selenium? Most people should have Google prompts as their default 2FA option, which can’t be automated since we can’t let our script to tap Confirm on the phone. Fortunately there is a way to automate the login workflow. Here is the tutorial that may be able to help you. First of all, let see the script running:
Pre-requisite:
- Python 3
- Selenium
- Google Authenticator App
Install Google Authenticator
Google Authenticator App generates 2-Step Verification codes on your phone. It’s available on both iOS and Android app store.
Get verification codes with Google Authenticator
There is an official guide on how to Turn on 2-Step Verification, if you haven’t turned it on, please refer to the guide.
After enabling 2-Step Verification, there are multiple methods for verification. We will go with Get verification codes with Google Authenticator.
- Go to your Google Account. At the top, click Security.
- Under “Signing in to Google,” tap 2-Step Verification.
- Under “Add more second steps to verify it’s you,” find “Authenticator app” and tap Set up.
- Choose your Phone Type and click Next.
- It will pop up a QR code, hold on, DO NOT SCAN THE QR CODE. Click “CAN’T SCAN IT”, and it will pop up a SECRET KEY:
This is the KEY we are gonna use in our automation, so please safely record it.
- Follow the steps and complete setup on your phone.
Generating OTP with Python
This part is quite straightforward. We will use PyOTP, a Python library for generating and verifying one-time passwords. We will use only two lines of code to generate OTP:
from pyotp import *
totp = TOTP("<YOUR_SECRET_KEY>")
Pretty easy huh? Once got the OTP, you can just send_keys(totp) to the input field, then click Next. Done -> Successful Login!
Full script: https://gist.github.com/yixuanzhou/9ad2ce1cf087344623066f4fdcd4feb8