Quiz: XPath
Test your understanding of XPath.
We'll cover the following...
We'll cover the following...
Technical Quiz
1.
(Select all that apply.) Which XPath expressions select all <a>
tags with the class attribute set to next
?
A.
//a[@class="next"]
B.
//a[class="next"]
C.
//a[class~="next"]
D.
//a[contains(@class, "next")]
1 / 4
...