I want to trigger the :hover effect that is defined in my CSS file using Selenium. Despite it being a common task, none of the methods suggested in previous threads seem to work anymore.
Here are some attempts I've made (unsuccessfully)
Selenium
-Interface (usingWebDriverBackedSelenium
) andmouseOver
Actions
withmoveToElement(..).build().perform()
- The
RenderedWebElement
has been deprecated since version 2.20 and I can't find an alternative for thehover()
method it used to provide.
Any new ideas on how to achieve this? Thanks!