Python selenium错误:ElementNotInteractableException: Message: element not interactable: Element is not
element
A Vue.js 2.0 UI Toolkit for Web
项目地址:https://gitcode.com/gh_mirrors/eleme/element
免费下载资源
·
脚本没问题,但是执行时报错:selenium.common.exceptions.ElementNotInteractableException: Message: element not interactable: Element is not currently visible and may not be manipulated
脚本逻辑为:访问百度,找到右上角设置,点击下拉中的搜索设置。修改每页条数为50。具体脚本如下:
# coding:utf-8
from selenium import webdriver
from selenium.webdriver.common.action_chains import ActionChains
import time
driver = webdriver.Chrome()
driver.get("https://baidu.com")
driver.implicitly_wait(5)
# 鼠标移动到设置按钮,点击设置,弹出下拉,选择搜索设置,点击搜索设置
mouse = driver.find_element_by_link_text("设置")
ActionChains(driver).move_to_element(mouse).perform()
time.sleep(3)
driver.find_element_by_link_text("搜索设置").click()
# time.sleep(1)
# 修改每页展示条数为50条
aaa = driver.find_element_by_xpath('html/body/div/div[7]/div/div/div/div/form/div/table/tbody/tr[3]/td[2]/select')
aaa.find_element_by_xpath('//option[@value="50"]').click()
driver.quit()
执行后发现报错:
错误提示的信息是,元素隐藏不可见。然后就感觉是不是有地方属性给设置成不可见了,然后开始找,结果还真发现了
但是突然又失望了,因为style="display: block;意思是显示,可为什么还是提示报错,元素找不到不可见呢?
后来发现,原来代码中缺少了一个等待时间造成了。点击了“搜索设置”后,立马就去找这个元素,没有发现这个元素造成的。于是,在代码中添加了一个time.sleep(1)问题就解决了
总结:在发现写的脚本没任何问题的时候,找不到哪写错了,千万不要忘记是不是因为没有等待而造成元素未找到。
GitHub 加速计划 / eleme / element
54.06 K
14.63 K
下载
A Vue.js 2.0 UI Toolkit for Web
最近提交(Master分支:3 个月前 )
c345bb45
7 个月前
a07f3a59
* Update transition.md
* Update table.md
* Update transition.md
* Update table.md
* Update transition.md
* Update table.md
* Update table.md
* Update transition.md
* Update popover.md 7 个月前
更多推荐
已为社区贡献5条内容
所有评论(0)