我有一个模拟服务,它的操作有两个可能的响应。如何使用脚本根据条件选择正确的响应?例如。
if(context.sessionID == ''){
// use response 1
} else {
// use response 2
}
如果您的代码在“MockResponses”的调度脚本中,那么正确的语法是:
return "response 1"
[编辑] 这在官方网站上有很好的解释:http: //www.soapui.org/Service-Mocking/creating-dynamic-mockservices.html#5-selecting-a-response-based-on-the -要求
context.httpResponse = "response 1"