Ejemplo 1: la clase xpath select td contiene texto
xpath=//td[@title="Main"]/following-sibling::td[contains(text(), 'Show')]
Ejemplo 2: la clase xpath select td contiene texto
// Get the content or container
WebElement content = driver.findElement(By.id("contentText"));
//Get the table of users
WebElement tblUsers = content.findElement(By.xpath(".//table/tbody/tr[2]/td/table/tbody/tr/td[1]/table"));
// Get the rows which change always as and when users are added
WebElement allUsers = tblUsers.findElements(By.xpath(".//tbody/tr"));
// Loop through each row of users table
for(WebElement user : allUsers) {
// Get the username
WebElement username = user.findElement(By.xpath(".//td/table/tbody/tr/td[1]/strong[2]"));
System.out.println("Username: " + username.getText());
}
¡Haz clic para puntuar esta entrada!
(Votos: 0 Promedio: 0)