Skip to content

Instantly share code, notes, and snippets.

@josemariagarcia95
Last active April 5, 2020 23:25
Show Gist options
  • Save josemariagarcia95/9715f15ec74e9256aff5cd17ea6ef71a to your computer and use it in GitHub Desktop.
Save josemariagarcia95/9715f15ec74e9256aff5cd17ea6ef71a to your computer and use it in GitHub Desktop.
Log in Amazon Photos and reach the "Undated pictures" section
#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