[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")

你可能感兴趣的:(response)