How to ignore first element in xpath
Posted
by priyank.mp
on Stack Overflow
See other posts from Stack Overflow
or by priyank.mp
Published on 2010-04-14T00:25:24Z
Indexed on
2010/04/14
1:13 UTC
Read the original article
Hit count: 509
xpath
|xpath-expression
How can I ignore first element and get rest of the elements?
<ul>
<li><a href="#">some link</a></li>
<li><a href="#">some link 2</a></li>
<li><a href="#">link i want to find</a></li>
</ul>
Thanks
© Stack Overflow or respective owner