I'm using a payload Factory and I want to select all the child nodes of the parent node. The problem is when I select all the child nodes using different Xpath expressions it returns the values but none of the nodes.
so rather than getting what I want
<child1>value1</child1>
<child2>value2</child2>
<child3>value3</child3>
I'm getting this
value1value2value3
The different Xpath expressions I've tried so far are
parent/child::node()
parent/node()
parent//*