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.

I have the next xpath:

//span[text()="Bingo"]/parent::div/parent::div/parent::td/preceding-sibling::td[1]

and it returns two elements.

How I choose one of them (first or second)?

I try:

//span[text()="Bingo"]/parent::div/parent::div/parent::td/preceding-sibling::td[1][1]

But it still gives me two elements.

share|improve this question

1 Answer

up vote 2 down vote accepted

Use parentheses over the whole expression, then an index:

(//span[text()="Bingo"]/parent::div/parent::div/parent::td/preceding-sibling::td[1])[1]
share|improve this answer
Thanks. It really finds one element in Xpath Finder, but when I try it on Selenuim IDE, it doesn't find the element – Adam Sh Sep 19 '12 at 14:13

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.