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.

Given following markup

<div>
    <a>Username1</a>
</div>
<div>
    <button>Unblock</button>
</div>
<div>
    <a>Username2</a>
</div>
<div>
    <button>Unblock</button>
</div>
<div>
    <a>Username3</a>
</div>
<div>
    <button>Unblock</button>
</div>

How do I select button element which is a cousin of a element with text Username2?

I can select the a element with //a[contains(., 'Username2')], so I thought that //a[contains(., 'Username2')]/following-sibling::/div/button would select the correct button, but that does not work. I think that it's not even valid XPATH.

share|improve this question

1 Answer

up vote 2 down vote accepted

You were close:

//a[contains(., 'Username2')]/../following-sibling::div[1]/button

To navigate to the cousin you first have to go to the parent (..) and then to its sibling.

Note that the following-sibling:: axis selects all following siblings, not only the first one. This means you must use [1] if you just want the first.

This would also work:

//a[. = 'Username2']/../following-sibling::div[1]/button

So would this:

//div[a = 'Username2']/following-sibling::div[1]/button
share|improve this answer
Wow, you're fast. – shioyama Nov 1 '12 at 8:11

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.