some text Like this. I want to use XPath to get text with img tag some text" /> some text Like this. I want to use XPath to get text with img tag some text" /> some text Like this. I want to use XPath to get text with img tag some text"/>

Xpath How to get text with html tag

930 Views Asked by At
<div class="content pb10">
        some text<img src="URL"/>
</div>

Like this. I want to use XPath to get text with img tag

some text<img src="URL"/>
1

There are 1 best solutions below

2
kjhughes On

This XPath,

/div[@class='content pb10']/node()

will select all children nodes of that div, including text nodes and elements, as requested.