--
You received this message because you are subscribed to the Google Groups "Selenium Users" group.
To post to this group, send email to seleniu...@googlegroups.com.
To unsubscribe from this group, send email to selenium-user...@googlegroups.com.
For more options, visit this group at http://groups.google.com/group/selenium-users?hl=en.
Thanks,
Valerio
--
--
You received this message because you are subscribed to the Google Groups "Selenium Users" group.
To post to this group, send email to seleniu...@googlegroups.com.
To unsubscribe from this group, send email to selenium-user...@googlegroups.com.
For more options, visit this group at http://groups.google.com/group/selenium-users?hl=en.
You have a couple of options.
Use the Actions implementation:
WebElement myElement =driver.findElement(By.xpath("//foo"));
Actions builder = new Actions(driver);
builder.moveToElement(myElement).build().perform();
Dive into the guts of selenium and hjack the Mouse implementation instead of using it via the Actions implementation:
Locatable hoverItem = (Locatable) driver.findElement(By.xpath("//foo"));
Mouse mouse = ((HasInputDevices) driver).getMouse();
mouse.mouseMove(hoverItem.getCoordinates());
From my experience this problem is restricted to Firefox. Have you tried running the tests on IE , Chrome or Opera?
--
You received this message because you are subscribed to the Google Groups "Selenium Users" group.
To view this discussion on the web visit https://groups.google.com/d/msg/selenium-users/-/xEECK9ThkQcJ.
Cheers,
Dylan
Also, you could cheat in Firefox by executing the javascript directly. This is not a valid a test but would allow you to test any functionality after the mouseover.
@Alex - Can you please share the action chains that you used to solve this issue? The mouse out feature does not work for me. I am using firefox on mac. I tried few different options like hover over any other element on the page, move to offset etc. but none of those seem to be working. :(
--
You received this message because you are subscribed to the Google Groups "Selenium Users" group.
To unsubscribe from this group and stop receiving emails from it, send an email to selenium-user...@googlegroups.com.
To post to this group, send email to seleniu...@googlegroups.com.
To view this discussion on the web visit https://groups.google.com/d/msgid/selenium-users/927b8a78-5d79-4989-9e9f-bb8a7d43387c%40googlegroups.com.
For more options, visit https://groups.google.com/d/optout.
--
You received this message because you are subscribed to the Google Groups "Selenium Users" group.
To unsubscribe from this group and stop receiving emails from it, send an email to selenium-user...@googlegroups.com.
To post to this group, send email to seleniu...@googlegroups.com.
To view this discussion on the web visit https://groups.google.com/d/msgid/selenium-users/927b8a78-5d79-4989-9e9f-bb8a7d43387c%40googlegroups.com.
For more options, visit https://groups.google.com/d/optout.
To view this discussion on the web visit https://groups.google.com/d/msgid/selenium-users/CAAc13-nymVbBm_3Dq_g0phC0KqgTGrdzzC73iyqMW2j6psrV1Q%40mail.gmail.com.