Created
June 21, 2022 06:19
-
-
Save ganigithub/98e9353d759446e9716c63b2aa3defc2 to your computer and use it in GitHub Desktop.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
import json | |
with open(*your file path*,'r') as f: | |
login = json.load(f) | |
username = login['user_id'] | |
password = login['password'] | |
totp = login['totp'] | |
webdriver_path = login['webdriver_path'] #path of your chromedriver | |
url = login['url'] |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment