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);For Pressing Keys
action.sendKeys(Keys.ESCAPE);
No comments:
Post a Comment