gmail.comにログインするためのコードを実行しようとしていますが、ログインプロセスが変更されたようです。私は次のようにコードを修正しましたが、次のエラーが表示され続けます:selenium.common.exceptions.NoSuchElementException:メッセージ:要素を見つけることができません: ""メソッド ":" id "、" selector ":" Passwd "} 私が間違っていることを知っている。おかげ退屈なものを自動化 - 第11章 - フォームの記入と提出p。 259
from selenium import webdriver
browser = webdriver.Firefox()
browser.get('http://gmail.com')
emailElem = browser.find_element_by_id('Email')
emailElem.send_keys('[email protected]')
nextElem = browser.find_element_by_id('next')
nextElem.click() # click the button
passwordElem = browser.find_element_by_id('Passwd')
passwordElem.send_keys('password')
passwordElem.submit()
Pythonのための安定したGmailのAPI:https://developers.google.com/gmail/api/quickstart/python –