I have listBox with value "This is_a_test" ( there is a space after the This )
$x('//li[contains(@class,"myClass")][text()="This is_a_test"]')
When I run it I got empty list []
I tried also
$x('//li[contains(@class,"myClass")][text()="This<b></b> <b></bis_a_test"]')
What do I need to change in my expression ?
The XML
<li .... >
"This"
<b></b>
<b></b>
"is_a_test"
</li>