Reputation: 29576
is there an XPath expression that would return all <a>
elements that follow the <span>
in the document below? That is: [y,z]
.
<table>
<tr>
<td>
<a href="x">x</a>
<span>s</span>
<a href="y">y</a>
<a href="z">z</a>
</td>
</tr>
</table>
Upvotes: 1
Views: 33