Double Click
Actions actions = new Actions(driver);
WebElement element = driver.findElement(By.id("ID"));
actions.doubleClick(element).perform();
Right Click
Actions actions = new Actions(driver);
WebElement element = driver.findElement(By.id("ID"));
actions.contextClick(element).perform();
No comments:
Post a Comment