无法单击 WebTable 中的编辑按钮
Unable to Click on Edit Button , in WebTable
我正在使用 xpath 单击编辑按钮,但我不知道 webtable 从哪里开始,所以我可以单击 webelement。
下面是 WebTable 的 link。
http://demo.automationtesting.in/WebTable.html
提前致谢。
试试这个:
// gets the first edit button
WebElement Edit_btn= driver.findElements(By.xpath("//div[@class = 'avddbl']/button")).get(0);
Actions action = new Actions(driver).doubleClick(Edit_btn);
action.build().perform();
如果您想要一些特定的选择,例如想要编辑特定用户的信息
然后您可以使用下面的 xpath,您必须更改电子邮件地址,只有它会单击该特定记录的编辑图标。
//div[text()='steven@hotm.com']/../following-sibling::div//div[@class='avddbl']/button[contains(@class,'btn')]
我正在使用 xpath 单击编辑按钮,但我不知道 webtable 从哪里开始,所以我可以单击 webelement。 下面是 WebTable 的 link。
http://demo.automationtesting.in/WebTable.html
提前致谢。
试试这个:
// gets the first edit button
WebElement Edit_btn= driver.findElements(By.xpath("//div[@class = 'avddbl']/button")).get(0);
Actions action = new Actions(driver).doubleClick(Edit_btn);
action.build().perform();
如果您想要一些特定的选择,例如想要编辑特定用户的信息 然后您可以使用下面的 xpath,您必须更改电子邮件地址,只有它会单击该特定记录的编辑图标。
//div[text()='steven@hotm.com']/../following-sibling::div//div[@class='avddbl']/button[contains(@class,'btn')]