我有点陷入问题,无法解决,我必须访问HTML表格中的页面上的第n个图像。我需要单击图像分别移至每一行的下一个屏幕

我尝试了此处提供的各种解决方案,但是由于我正在使用findElement(by)语法,因此无法在这些帮助下运行代码

我的代码是:

public void editUser(String userName)
{
    System.out.println("in editUser 1");
    int row = getCellRow(table, userName);
    System.out.println("in editUser 2");

    WebElement  edit = driver.findElement(By.xpath("//*[@class='grid']/tbody/tr[2]/td[8]/a[1]/img"));

    System.out.println("in editUser 3");
    edit.click();
    System.out.println("in editUser 4");
    clickButton(closeButton);
}

错误是:
No such element exception. Unable to locate element: {"method":"xpath", selector"://img[@title='User Management'])[2]

Selenium IDE可以识别我的元素,但不能识别Selenium Web驱动程序!
请指教

最佳答案

例如,使用[]引用第n个元素

WebElement  edit = driver.findElement(By.xpath("(//*[@class='grid']//img)[n]"));

其中n是元素编号

关于xpath - Selenium WebDriver查找第n个元素,我们在Stack Overflow上找到一个类似的问题:https://stackoverflow.com/questions/12831677/

10-10 14:09