How can I get H1,H2,H3 contents in one single xpath expression?
I know I could do this.
//html/body/h1/text()
//html/body/h2/text()
//html/body/h3/text()
and so on.
|
How can I get H1,H2,H3 contents in one single xpath expression? I know I could do this.
and so on. |
||||
|
|
|
Use:
The following expression is incorrect:
because it may select text nodes that are children of Another recommendation: Always avoid using |
|||||
|