Can't seem to click on a 'close' button to close a pup up window that I have opened before to scrape the data that it displays. The button has the following html script:
<div class="closebutton" onclick="return hs.close(this)" title="Schließen"></div>
I was trying the following:
driver.find_element_by_xpath("//div[@class='closebutton']").click()
But I get the error:
Message: element not interactable
Anyone have a clue how to make the element interactable?