Please help me to write a code for doubleClick() on a record using web driver?
I displayed few records in the body part. Once I click on a record I should get a popup window to update it.
I tried the following code:
Actions action = new Actions(driver);
action.moveToElement(driver.findElement(By.xpath("//table/tbody/tr[2]/td/div/div/table/tbody/tr[10]/td[1]"))).doubleClick().build().perform();