文章目录
报错分析
报错:
selenium.common.exceptions.ElementNotInteractableException: Message: element not interactable
ElementNotInteractableException
异常表示无法与元素交互,通常是由于该元素不可见、被其他元素遮挡或者需要滚动页面才能被显示。
解决办法
以下是一些可能导致该异常出现的情况和解决办法:
- 元素被遮挡:该元素可能被其他元素遮挡,或者被当前浏览器窗口以外的元素遮挡。可以尝试使用
execute_script()
方法将页面滚动到该元素可见的位置,或者使用ActionChains
类模拟鼠标操作移动到该元素上方。 - 元素未加载完成:该元素可能还未加载完成就被尝试交互了。可以使用
WebDriverWait
类等待元素加载出来后再进行交互操作,例如:
from selenium.webdriver.support.ui import WebDriverWait
from selenium.webdriver.support import expected_conditions as EC
from selenium.webdriver.common.by import By
# 等待元素加载出来
element = WebDriverWait(driver,10).until(
EC.element_to_be_clickable((By.XPATH,"xpath of element")))# 点击元素
element.click()
- 元素被设为不可交互:该元素可能被设置为不可交互(例如
disabled
属性)。在这种情况下,需要检查该元素属性是否正确,或者尝试使用JavaScript代码删除该属性,例如:
element = driver.find_element_by_xpath("xpath of element")
driver.execute_script("arguments[0].removeAttribute('disabled')", element)
本文转载自: https://blog.csdn.net/Oh_Python/article/details/134653304
版权归原作者 街 三 仔 所有, 如有侵权,请联系我们删除。
版权归原作者 街 三 仔 所有, 如有侵权,请联系我们删除。