我試圖通過使用Selenium
(Python)通過「ENTER」到文本字段。文本框要求每個電話號碼可以在新行中輸入,所以它看起來像:Python Selenium - AttributeError:WebElement對象沒有屬性sendKeys
#Add the phone number#
Webelement.sendKeys(Keys.ENTER)
我已經導入了以下庫:
from selenium.webdriver.common.keys import Keys
的問題我越來越是它失敗:
AttributeError: 'WebElement' object has no attribute 'sendKeys'
有沒有人知道如何解決這個問題?我一直在尋找解決方案,但一直未能找到任何東西。
在[硒所述第一個示例(http://selenium-python.readthedocs.io/getting-started.html)文件應幫幫我。此外,谷歌搜索'python硒sendkeys'提供了各種有用的提示,因爲這個問題... – donkopotamus