Automation Testing with Selenium
Thursday, January 16, 2014
Handling Mouse Over in WebDriver
Snippet for handling Mouse over,
Actions actions=
new
Actions(
driver
);
WebElement
mouseOver=
driver
.findElement(By.
id
(
"aBills"
));
actions.moveToElement(mouseOver, 10, 10).perform();
No comments:
Post a Comment
‹
›
Home
View web version
No comments:
Post a Comment