I have this html element
<li>
<em>Features</em><br>
Full Options, Fully Auto, Fully Loaded, Power Locks, Power Steering, Airbag: Driver, Airbag: Passenger, Airbag: Side, Alarm, Power Windows, Rear Window Wiper, Anti-Lock Brakes, Power Seats, CD Changer, CD Player, A/C: Front, A/C: Rear, Navigation System,
</li>
I want to take the text inside the li
.
Please note that I can reach the li but i don't know how to get the text inside it
I tried this:
.//ul/li[3]/text()
and this
.//ul/li[3]/br/text()
and this:
.//ul/li[3]/br[1]text()
but i got empty result.