Handling MOUSE OVER IN WebDriver - Bug Reaper

                  Bug Reaper

Lean about Automation Testing,Selenium WebDriver,RestAssured,Appium,Jenkins,JAVA,API Automation,TestNG,Maven, Rest API, SOAP API,Linux,Maven,Security Testing,Interview Questions

Monday 23 September 2013

Handling MOUSE OVER IN WebDriver

MOUSE OVER


Actions actions=newActions(driver);
WebElement mouseover=driver.findElement(By.id(""));
actions.moveToElement(mouseover);
actions.click().perform();

For Pressing Keys
 Actions action =new Actions(driver);

action.sendKeys(Keys.ESCAPE);

No comments:

Post a Comment