How to write selenium java code for doubleClick() on a record using web driver?
I have displayed some records in the body part and once I clicked on a record we should get a popup window to update it.
I have 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();