from selenium import webdriver
from selenium.webdriver.common.keys import Keys
import time
PATH = 'C:\Program Files (x86)\chromedriver.exe'
driver = webdriver.Chrome(PATH)
driver.get('https://outlook.office.com/mail/')
driver.implicitly_wait(7)
login = driver.find_element_by_name("loginfmt")
login.send_keys("emailhere")
login.send_keys(Keys.RETURN)
driver.implicitly_wait(5)
password = driver.find_element_by_name("passwd")
password.send_keys("passwordhere")
password.send_keys(Keys.RETURN)
It perfectly inputs the email and takes me to the password input screen, but at that point, it does not send the keys for the password. Any ideas on what is wrong with my code?