我有这样的回应。
<S:Envelope xmlns:S="http://schemas.xmlsoap.org/soap/envelope/">
<S:Body>
<ns3:ResponseElement xmlns:ns2="http://www.example.com/services/common/example/xsd" xmlns:ns3="http://www.example.com/example/xsd">
<Info>
<Data>
<Site>OneValue</Site>
</Data>
<OtherData>
<Code>56789</Code>
<Time>2017-07-30</Time>
<SecondCode>ThirdValue</SecondCode>
<Number>111</Number>
</OtherData>
</Info>
</ns3:ResponseElement>
</S:Body>
</S:Envelope>
在常规情况下,如何在<S:Body>
标签内将响应提取为XML?
答案 0 :(得分:1)
我想出了答案。如果这样做可能对其他人有帮助
def body = context.expand('${TestStepName#Response#//soap:Body}')
log.info body