Hello!!!
After updating the opera to the latest version "100.0.4815.30" and updating the driver. When running the tests, errors were observed when searching for some locators. The error that was displayed looked like this: "ElementNotInteractableException"
Tried to change locators, nothing helped.
After unsuccessful attempts to change the locators, I rolled back the version of the opera to "99.0.4788.88"
Ran the tests and everything started working.
Tell me what could be the problem that not all locators work in the new version operadriver ??
An example of locators that were not worked out //div[@class ='_3nLtY']/div[3]
browser = webdriver.Remote(webdriver_service.service_url, webdriver.DesiredCapabilities.OPERA, options=options)
...
def open_support_page(self):
link_support = self.browser.find_element(*PopUpLocators.Link_support)
link_support.click()
...
Link_sup = "//div[@class ='_3nLtY']/div[3]"
Link_support = (By.XPATH, Link_sup)