响应机构未在Katalon Studio中显示

问题描述 投票:0回答:1

我已经开始使用Katalon Studio进行自动化测试。我正在发送SOAP请求并获得响应状态,但遗憾的是无法在Katalon Studio中看到响应主体。有什么方法可以看到响应体吗?

You can see screenshot from here

enter image description here

soap automated-tests katalon-studio
1个回答
0
投票

试试这个。我在这里提到(http://www.dneonline.com/calculator.asmx?op=Add)。我得到了回复机构。

<?xml version="1.0" encoding="utf-8"?>
<soap:Envelope xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" 
xmlns:xsd="http://www.w3.org/2001/XMLSchema" 
xmlns:soap="http://schemas.xmlsoap.org/soap/envelope/">
  <soap:Body>
    <Add xmlns="http://tempuri.org/">
      <intA>2</intA>
      <intB>3</intB>
    </Add>
  </soap:Body>
</soap:Envelope>
© www.soinside.com 2019 - 2024. All rights reserved.