I have an XML File with this characteristics:
<Root>
<Example>
<Address> Sesame Street </Address>
<Address> New York US </Address>
</Example>
<Example>
<Address> Nairobi KE</Address>
</Example>
</Root>
I want to extract always the second tag (New York US) or the first one if its only one tag. But on UiPath when i try to extract (with Execute XPath activity), it always returns the first one. Any suggestion on how can i extract the second one or the first if its the only one?