0

我正在使用 dotmailer.com ESP 并使用 SoapUI 来调用 API。我可以获取 JSON 格式的活动摘要,但我也想将该活动的摘要提取到文本文件中,但找不到任何方法。任何人都可以帮忙吗?谢谢。

4

1 回答 1

0

您可以使用 groovy 来完成。只需在您的 testCase 中添加一个groovy script testStep,您就可以从先前的 testStep 中获取响应并保存在文件中。由于您的问题中没有太多细节,因此通用的方法可能是:

// get the test step
def testRequest = context.testCase.getTestStepByName('Test Request')
// get the response
def response = testRequest.getPropertyValue('Response')
// create a file
def file = new File('C:/temp/response.txt');
// save the response to it
file << response

希望能帮助到你,

于 2015-11-26T08:08:10.050 回答