Groovy脚本获取请求xml

时间:2012-08-24 09:47:14

标签: java xml parsing groovy soapui

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

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

def response = new XmlHolder(messageExchange.responseContentAsXml)

但我不知道如何获取SOAPUI的请求xml。谁能帮助我获取SOPAUI的请求xml?

1 个答案:

答案 0 :(得分:4)

要将请求内容作为字符串获取,您可以使用

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

有关SoapUI API的更多信息,请访问http://www.soapui.org/apidocs/index.html?overview-summary.html。查看Request and Response类,特别是它们提供的方法和属性