使用 Selenium 登录 Microsoft 帐户

6 python selenium-webdriver

我正在尝试使用 selenium 登录我的 Microsoft 帐户。下面的代码会导致站点返回一条错误消息,指出登录过程中出现问题。

from selenium import webdriver
import time

browser = webdriver.Firefox()
browser.get('https://login.live.com')

#locating email field and entering my email
elem = browser.find_element_by_id("i0116")
elem.send_keys("myEmailAddress")

#locating password field and entering my password
elem2 = browser.find_element_by_id("i0118")
elem2.send_keys("myPassword")


elem.submit()
Run Code Online (Sandbox Code Playgroud)

我输入的密码绝对正确。难道微软只是不想远程控制浏览会话尝试登录?

小智 10

我认为您需要等待,因为字段不会立即显示。以下对我有用:

from selenium.webdriver.support import expected_conditions as EC
from selenium.webdriver.support.ui import WebDriverWait
from selenium import webdriver
from selenium.webdriver.common.by import By

EMAILFIELD = (By.ID, "i0116")
PASSWORDFIELD = (By.ID, "i0118")
NEXTBUTTON = (By.ID, "idSIButton9")

browser = webdriver.Firefox()
browser.get('https://login.live.com')

# wait for email field and enter email
WebDriverWait(browser, 10).until(EC.element_to_be_clickable(EMAILFIELD)).send_keys("myEmailAddress")

# Click Next
WebDriverWait(browser, 10).until(EC.element_to_be_clickable(NEXTBUTTON)).click()

# wait for password field and enter password
WebDriverWait(browser, 10).until(EC.element_to_be_clickable(PASSWORDFIELD)).send_keys("myPassword")

# Click Login - same id?
WebDriverWait(browser, 10).until(EC.element_to_be_clickable(NEXTBUTTON)).click()
Run Code Online (Sandbox Code Playgroud)

  • 我实际上能够通过使用 time.sleep() 函数来完成此任务。但这可能是更好的解决方案。 (2认同)
  • 使用 selenium 如何添加双因素身份验证支持?“验证您的身份”页面是一个表单组,您需要在其中选择双因素的媒介,并且选择会在表格的表单组中呈现? (2认同)