Forum Discussion
M_McDonald
14 years agoSuper Contributor
For me, with a response like this:
And transfer xpaths like this:
a request body like this:
turns into this:
<Products>
<ProductCode description="Alpha 1">A1</ProductCode>
<ProductCode description="Other"/>
</Products>
And transfer xpaths like this:
//ProductCode[@description='Alpha 1']/text()
//ProductCode[@description='Other']/text()
a request body like this:
<Products>
<ProductCode>${MyProperties#prodCode1}</ProductCode>
<ProductCode>${MyProperties#prodCode2}</ProductCode>
</Products>
turns into this:
<Products>
<ProductCode>A1</ProductCode>
<ProductCode/>
</Products>