📌  相关文章
📜  selenium.common.exceptions.ElementNotInteractableException:消息:元素不可交互 - Python 代码示例

📅  最后修改于: 2022-03-11 14:45:50.385000             🧑  作者: Mango

代码示例1
from selenium.webdriver.common.action_chains import ActionChains

button = driver.find_element_by_class_name(u"infoDismiss")
driver.implicitly_wait(10)
ActionChains(driver).move_to_element(button).click(button).perform()