Answers for "selenium.common.exceptions.elementnotinteractableexception: message: element not interactable (session info: chrome=97.0.4692.71)"

1

selenium.common.exceptions.ElementNotInteractableException: Message: element not interactable

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()
Posted by: Guest on June-30-2020

Code answers related to "selenium.common.exceptions.elementnotinteractableexception: message: element not interactable (session info: chrome=97.0.4692.71)"

Python Answers by Framework

Browse Popular Code Answers by Language