xpath element that contains text
"//h4/a[contains(text(),'SAP M')]"
xpath element that contains text
"//h4/a[contains(text(),'SAP M')]"
xpath select td class contains text
xpath=//td[@title='Main']/following-sibling::td[contains(text(), 'Show')]
xpath select td class contains text
// 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());
}
Copyright © 2021 Codeinu
Forgot your account's password or having trouble logging into your Account? Don't worry, we'll help you to get back your account. Enter your email address and we'll send you a recovery link to reset your password. If you are experiencing problems resetting your password contact us