Groovy脚本获取请求xml

我可以使用Groovy脚本获取响应xml。我需要获取请求XML,因为我需要在soap ui测试中添加“断言脚本”。

我正在使用以下代码来获取响应xml

def response = new XmlHolder(messageExchange.responseContentAsXml)

但是我不确定如何获取SOAPUI的请求xml。谁能帮我获得SOPAUI的请求xml吗?

回答:

要以字符串形式获取请求内容,可以使用

testRunner.testCase.testSteps["Name of your teststeup"].testRequest.response.getRequestContent()

有关SoapUI API的更多信息,请访问http://www.soapui.org/apidocs/index.html?overview-

summary.html。看一下Request和Response类,特别是它们提供的方法和属性

以上是 Groovy脚本获取请求xml 的全部内容, 来源链接: utcz.com/qa/402726.html

回到顶部