I have the following HTML:
<div>
<p>foo</p>
<p class='foo'>foo</p>
<p class='foo'>foo</p>
<p>bar</p>
</div>
How can i select second P tag with class 'foo' by XPath?
|
I have the following HTML:
How can i select second P tag with class 'foo' by XPath? |
|||
|
The following expression should do it:
Edit: The use of
|
|||||||||||
|
//div/p[@class="foo"][2]works in difference from//p[@class="foo"][2]Seems like parent object is obligatory – hoblin Nov 9 '11 at 12:29