I know this has been asked lots of times before but how do you get around the “element not interactable” exception? I’m new to Selenium so excuse me if I get something wrong. Here is my code: button = driver.find_element_by_class_name(u"infoDismiss") type(button) button.click() driver.implicitly_wait(10) Here is the HTML: <button ...
Home/webdriver