Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
如何使用 Katalon Studio 从一个测试用例中调用方法?
例如,我有一个测试用例采购订单,我有两个测试方法(测试方法 1 和测试方法 2),现在我想做的是,我想创建一个新的测试用例并在其中只调用测试方法 2。
请建议
您可以使用以下代码简单地从测试用例中调用现有测试用例:
WebUI.callTestCase(findTestCase({Test Case ID}), [key1:value1, key2:value2, … , keyN:valueN], FailureHandling.option)
一个简单的例子:
WebUI.callTestCase(findTestCase('TestCaseToCall'), [:], FailureHandling.STOP_ON_FAILURE)