I don’t know what to do with this mouseOver in selenium.
I’m working with FF13. And with the last version of webdriver.
I read this Is there a proved mouseOver workaround for FirefoxDriver in Selenium2? and i did exactly like this:
Actions builder = new Actions(driver);
Actions hoverOverRegistrar = builder.moveToElement(menuRegistrar); hoverOverRegistrar.perform();
but when it points to the object an other object (dropdown menu) appears just for a moment and then hides, so selenium not always has time to click on appeared dropdown menu.
What am i doing wrong?
I guess some thing like this should work –
If there is any problem.Please post the stack trace you get.