What is XPath?
XPath is a language to select nodes in an XML or HTML document. QA testers use it extensively in Selenium for locating elements.
Basic Examples
Example: //div[@class='product']
selects all divs with class "product".
Practice Tool
Try these examples in our XPath practice tool for QA testers.