我正在使用 Selenium webdriver 来自动化我的 Web 应用程序。我必须在我的 Web 应用程序中处理鼠标悬停事件。所以如何处理这些。附上清除截图。Acyually我必须通过从左到右移动鼠标来选择那个特定的。请帮助我。
问候, 阿布舍克
我正在使用 Selenium webdriver 来自动化我的 Web 应用程序。我必须在我的 Web 应用程序中处理鼠标悬停事件。所以如何处理这些。附上清除截图。Acyually我必须通过从左到右移动鼠标来选择那个特定的。请帮助我。
问候, 阿布舍克
您需要使用 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