使用安装脚本
def result = com.eviware.soapui.support.UISupport.prompt("Please select the enviornment", "Environment", ['UAT1','UAT2','UAT3'])
def testcases = testSuite.getTestCaseList()
if(result == 'UAT1'){
testcases.each { testcase ->
def teststeps = testcase.getTestStepList()
teststeps.each { teststep ->
teststep.setPropertyValue('endpoint','')
}
}
为单个端点运行测试套件。
但是我陷入了一个使用testcase1" endpoint1"和testcase2使用" endpoint2"作为终点。所以想知道我们如何在这个场景中使用switch case在安装脚本中使用Groovy单击运行两个测试用例?