XPath

XML Path Language - XPath - is a query language for selecting nodes from an XML document.

For some XML like this:

<root>
  <node>
    <target />
  </node>
</root>

the XPath to target would be

/root/node/target