[SoapUI]怎样保存response到本地文件夹

def myOutFile = "D:/AUS/Aspect Huntley feed URLs/Automation Save Responses/ahresearch.xml"
def response = context.expand( '${testStepName#Response}' )
def f = new File(myOutFile)
f.write(response, "UTF-8")

原文地址:https://www.cnblogs.com/MasterMonkInTemple/p/4151585.html