0

我正在使用 Selenium webdriver 来自动化我的 Web 应用程序。我必须在此处输入图像描述在我的 Web 应用程序中处理鼠标悬停事件。所以如何处理这些。附上清除截图。Acyually我必须通过从左到右移动鼠标来选择那个特定的。请帮助我。

问候, 阿布舍克

4

1 回答 1

3

您需要使用 Actions API。

它看起来像这样:

Actions actions  = new Actions(driver);
actions.moveToElement(driver.findElement(By.someSelector()))
actions.otherActions();
actions.perform();

http://selenium.googlecode.com/git/docs/api/java/org/openqa/selenium/interactions/Actions.html

于 2013-09-24T15:10:19.557 回答