Just little help. Please let me know the correct xpath expression for this
I have xml doc like this
<parent>
<child id='1' show='true' />
<child id='2' show='true' />
<child id='3' show='true' />
<child id='4' show='true' />
<child id='5' show='true' />
<child id='6' show='true' />
</parent>
I want to select all show attributes except 2nd and 5th childs so that i can turn their values to false
You can use boolean
andin your XPath expression:If you really want the second and fifth element, you can use the
position()function: