I am trying to extra some data from a webpage. the structure of the webpage is as below

<li id="yui_3_4_1_1_1326860702769_9706">
<span id="yui_3_4_1_1_1326860702769_9705">Sales rank: </span>
2
</li>

http://www.barnesandnoble.com/w/enders-game-orson-scott-card/1100353963?ean=9781429963930

I need to extract value "2" from above and identifier has to be "Sales rank"

Thanks for all the help.

link|improve this question

30% accept rate
feedback

3 Answers

up vote 0 down vote accepted

try this:

//descendant::*[@class='product-details box']/ul/li[span='Sales rank: ']/text()
link|improve this answer
This selects more than one node -- be aware of the whitespace-only text nodes. – Dimitre Novatchev Jan 18 at 14:22
awesome this works : query("//descendant::*[@class='product-details box']/ul/li[span='Sales rank: ']/text()")->item(0)->nodeValue; – Abhi Jan 19 at 2:50
please upvote if you accept the answer. – Kaipa M Sarma Jan 19 at 8:28
feedback

You can try using:

//div[@class="product-details"]/ul/li[9]

Not tested though.

link|improve this answer
the issue is that it is not always 9th element :) – Abhi Jan 18 at 19:47
feedback

Use:

//li[@id='yui_3_4_1_1_1326860702769_9706']
    /span[. = 'Sales rank: ']
      /following-sibling::text()[1]

This selects the first following-sibling text node of any span element with string value 'Sales rank: ', that is a child of any li element whose id attribute has the value of 'yui_3_4_1_1_1326860702769_9706' .

link|improve this answer
thanks Dimitre. however "yui_3_4_1_1_1326860702769_9706" is a dynamically generated number for thse sections and thus can not use it. – Abhi Jan 18 at 19:41
feedback

Your Answer

 
or
required, but never shown

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