Source is the obstacle course: https://obstaclecourse.tricentis.com/Obstacles/23292
The Xpath I try is:
//*[contains(text(),'John')]
But that leads to 2 elements
How can I improve the Xpath so It can find the TR with John Doe?
Source is the obstacle course: https://obstaclecourse.tricentis.com/Obstacles/23292
The Xpath I try is:
//*[contains(text(),'John')]
But that leads to 2 elements
How can I improve the Xpath so It can find the TR with John Doe?
//tr[contains(.,"John") and contains(.,"Doe") ]