Tell me more ×
Facebook - Stack Overflow is a question and answer site for facebook developers. It's 100% free, no registration required.
Facebook and Stack Exchange are now working together to support the Facebook developer community. Facebook engineers participate here along with the best Facebook developers in the world. If you have a technical question about Facebook, this is the best place to ask.

This is the code:

<li>
    <a>
        <h1>Quorn StukĀ­jes</h1>
        <p class="price">
    </a>
    <form>
        <button type="submit">+</button>
    </form>
</li>

I want to create a locator that finds the first <h1> that has an sibling element <p> with an attribute "price". Easy so far. But now I also want that <h1> to share its grandparent with a <button> class with the attribute type "submit".

What I created was the following:

//a/p[@class="price"]/preceding-sibling::p/preceding-sibling::h1

I'm wondering if this is the most sensible solution (it does work), or if there is something more elegant and robust.

share|improve this question
Your xpath doesn't seem to mention the button etc? – AakashM Apr 4 '12 at 13:49
Yeah sorry about this one, I'm not sure what i was thinking, i must have pasted the wrong code. – user1312966 May 4 '12 at 11:26

1 Answer

(//*[form/button[@type = 'submit']]/*[p[@class = 'price']]/h1)[1] should do (assuming a submit button only makes sense in a form parent element).

share|improve this answer
Thats very interesting. I'm only just starting with xpath. Am I correct in understanding that //*[p[@class="price"] means "Any element containing an element p with attribute class=price"? – user1312966 May 4 '12 at 11:29

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

Not the answer you're looking for? Browse other questions tagged or ask your own question.