如何在soapUI的body标签内提取肥皂响应

时间:2018-09-19 16:48:36

标签: groovy soapui

我有这样的回应。

<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?

1 个答案:

答案 0 :(得分:1)

我想出了答案。如果这样做可能对其他人有帮助

def body = context.expand('${TestStepName#Response#//soap:Body}')
log.info body