Probably this is not the best way of locating elements, but sometimes it’s needed to use these kind of locator strategy. A reason might be the lack of element identifiers.
CSS | XPath | |
Select second element | E:nth-child(2) | //E[2] |
First <E> child | E:first-of-type | //E[1] |
Last <E> child | E:last-of-type | //E[last()] |
Examine your knowledge and play the ‘locator game‘.