- Code: Select all
<root>
...
<required>false</required>
...
I need a condition with xpath that evaluates to true when /root/required text node contains false. I tried various ways, /root/required != true, /root/required = false, not(/root/required). Had no luck. Though, !=, = are valid xpath operators, but it looks like they are not recognized or I use them in a wrong way.
Besides, is ...