其他Testcase中的SoapUI Groovy GotoTestStep

问题描述 投票:1回答:1

我在SoapUI中有一个带有2个测试用例的Testsuite。例如,TestSuite 1包含Testcase 1和TestCase 2

TestCase1有一个Groovy-TestStep1。 Groovy-TestStep1应该转到TestCase 2中的TestStep4(Groovy-TestStep1应该转到TestStep4而不是运行TestStep4)

可能吗 ?

TestCase1 TestStep1(groovy)

TestCase2 testStep1(http-request)testStep2调用TestCase1 TestStep3(http-request)TestStep4((http-request)TestStep5(http-Request)

非常感谢你的回答

迈克尔

groovy soapui
1个回答
0
投票

可以在其他测试套件中调用测试步骤。你可以尝试类似的东西:

def otherTestSuite = testRunner.testCase.testSuite.project.getTestSuiteByName("OtherTestSuite")
def otherTestStep = otherTestSuite.getTestCaseByName("otherTestCase").getTestStepByName("otherTestStep")
otherTestStep.run (testRunner, context) 
© www.soinside.com 2019 - 2024. All rights reserved.