Is there a proved mouseOver workaround for FirefoxDriver in Selenium2?

I would suggest trying the Advanced User Actions API that was added in the 2.0rc1 release yesterday, as it looks like you're using the Selenium 1 API still (going through WebDriverBackedSelenium), and I'm not sure how much Firefox 4 support that provides. I'm not using Java for my Selenium tests, but it looks to me like what you would want to do is something like this: Actions builder = new Actions(driver); // Or maybe seleniumDriver? Not sure which one to use Action hoverOverRegistrar = builder.

MoveToElement(menuRegistrar); hoverOverRegistrar.perform().

Thanks for pointing me to the 2.0rc1! I knew I was using Selenium 1 API because I had already tried with the Selenium 2 API and I kept getting the UnsopportedOperationException (or something like that). But the Advanced User Actions with the rc1 worked perfectly!

The working code is in the final edit of the question. Thanks a lot for your time! – Juan Paredes Jun 6 at 14:43.

I cant really gove you an answer,but what I can give you is a way to a solution, that is you have to find the anglde that you relate to or peaks your interest. A good paper is one that people get drawn into because it reaches them ln some way.As for me WW11 to me, I think of the holocaust and the effect it had on the survivors, their families and those who stood by and did nothing until it was too late.

Related Questions