How to double click on element using selenium 2.0?


WebElement el  =  driver.findElement(By.id("ElementID"));

Actions builder = new Actions(driver);
builder.doubleClick(el).build().perform();
No comments :

No comments :

Post a Comment