Python3 Web自动化错误-ElementNotInteractableException:消息:元素不可交互

时间:2020-07-02 22:24:54

标签: python-3.x selenium webautomation

此处是编码和编程的新手。只是想知道是否有人知道下面的代码为什么返回“ ElementNotInteractableException”错误?它似乎来自“搜索”部分,因为我在没有它的情况下运行了代码,但没有收到错误。我正在尝试自动在YouTube上搜索“猫视频”。我可以打开YouTube,但不能在搜索栏上输入内容。非常感谢!

下面是代码:

from selenium import webdriver

driver = webdriver.Chrome()
driver.get('http://youtube.com')

search = driver.find_element_by_xpath('//*[@id="search"]')
*search.send_keys('cat videos')*

searchButton = driver.find_element_by_xpath('//*[@id="search-icon-legacy"]')
searchButton.click()

0 个答案:

没有答案