Im making a chrome sign in script and the last part where the program should press the next button is not working.
import selenium
from selenium import webdriver
browser = webdriver.Chrome()
browser.get("https://accounts.google.com/signin/v2/identifier?hl=EN&flowName=GlifWebSignIn&flowEntry=ServiceLogin")
email = browser.find_element_by_id("identifierId")
email.send_keys("email")
browser.find_element_by_id("identifierNext").click()
browser.implicitly_wait(4)
password = browser.find_element_by_name("password")
password.send_keys("password")
browser.find_element_by_xpath('//*[@id="passwordNext"]/content/span').click()
I have tried using the name, ID and the xpath and none have worked
The error message says it is not clickable. Any help would be greatly appreciated I'm very new to programming.