I have such content of html file:
<a class="bf" title="Link to book" href="/book/229920/">book name</a>
Help me to construct xpath expression to get link text (book name).
I try to use /a, but expression evaluates without results.
|
I have such content of html file:
Help me to construct xpath expression to get link text (book name).
I try to use |
|||
|
|
|
Have you tried
? More specific is better:
|
|||
|
It depends also on the rest of your document. If you use Apart from that a possible xpath expression is The |
|||
|
|
|
If the context is the entire document you should probably use // instead of /. Also you may (not sure about that) need to get down one more level to retrieve the text. I think it should look like this
EDIT: As Tomalak pointed out it's text() not text |
||||
|
|