我正在使用SoapUI的REST服务进行一些测试。有关Template参数的示例,请参阅此链接:http://www.soapui.org/REST-Testing/understanding-rest-parameters.html
我的要求需要看起来像这样:
http://www.myservice.com/endpoint/parameter1/parameter2a,parameter2b/parameter3
如何为网址的“parameter2”部分创建模板样式参数> = 1次?
答案 0 :(得分:1)
使用${#TestCase#Parameter2}
作为默认值,并使用Groovy脚本构建字符串,并使用以下内容设置属性:
testRunner.testCase.setPropertyValue( "Parameter2", "p2a,p2b,p3c" )