Absolute and Relative XPath
Let’s find out about the difference between absolute and relative XPath in this lesson.
We'll cover the following...
What is an absolute and relative XPath?
In an absolute XPath, you traverse from the top of the hierarchy, say html
or body
node, until the target node in the DOM.
In a ...