我正在使用dotmailer.com ESP并使用SoapUI来调用API。我可以用JSON格式获取广告系列的摘要,但我也希望将该广告系列的摘要提取到文本文件中,但无法找到任何方法。有人可以帮忙吗? 感谢。
答案 0 :(得分: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
希望它有所帮助,