質問

How to use mouseDown and mouseOver etc in selenium, with the websites I am working click is working but how to use mouse related commands?

役に立ちましたか?

解決

You should use Action Builder

Actions builder = new Actions(driver);
builder.moveToElement(element).build().perform();

(for the Mouse Over) More info here

With Selenium IDE, you need to execute some javascript code. See here

ライセンス: CC-BY-SA帰属
所属していません StackOverflow
scroll top