What should be xpath query to select an element where the attribute att not present.
<root>
<elem att='the value' />
<elem att='the value' />
<elem att='the value' />
**<elem />**
<elem att='the value' />
<elem att='the value' />
</root>
I want to update element where attribute att not present.
Thanks