I have this html node
<li>
<em>Description
</em>
<br>
TEXT TEXT
</li>
I want to extract the Text Text
I tried this:
sel.xpath('//em[normalize-space(.) = "Description"]/following-sibling::*')
I got empty result.
Why please?