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.

How can be selected element according his value and class with xpath?

The case:Need xpath for class="my_class" + element value = 'First element value'

text....
    <div class="my_class"> First element value </div>
text... 
<div class="my_class"> Second element value </div>
text...
<div class="not_my_class"> First element value </div>
text..

Update: please if you can write full code: xpath + php or other program language.

Thanks

share|improve this question

1 Answer

up vote 1 down vote accepted

This xpath will give you the first element in your example:

//div[.='First element value' and @class='my_class']

However you probably don't want to use the // operator; use a specific path instead. This works in XMLSpy, not sure about in any languages' XML implementations.

share|improve this answer
please can you give php example with xpath that you write? – Yosef Nov 10 '10 at 14:31
@Yosef: sorry, I don't really know PHP. However, this question looks like it might be useful to you: stackoverflow.com/questions/230592 – Graham Clark Nov 10 '10 at 14:34
what meaning of //div instead just div? – Yosef Nov 10 '10 at 16:10
@Yosef: //div means all div elements descendant from document root and div means all div elements children of context node – user357812 Nov 10 '10 at 16:41
+1 Good answer. As a minor, do note that @class in (X)HTML probably holds a sequence. – user357812 Nov 10 '10 at 16:43

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.