Last active
April 5, 2020 23:25
-
-
Save josemariagarcia95/9715f15ec74e9256aff5cd17ea6ef71a to your computer and use it in GitHub Desktop.
Log in Amazon Photos and reach the "Undated pictures" section
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
#Log in using your credentials | |
name_field = chrome_driver.find_element_by_id("ap_email") | |
password_field = chrome_driver.find_element_by_id("ap_password") | |
name_field.clear() | |
name_field.send_keys("**********************") | |
password_field.clear() | |
password_field.send_keys("************************") | |
chrome_driver.find_element_by_id("signInSubmit").click() | |
header_inline = chrome_driver.find_element_by_id("primary-header-inline") | |
header = chrome_driver.find_element_by_id("primary-header") |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment