mrdwprice
5 years agoContributor
Groovy script to list all TestSuites
Please could someone help me with a Groovy script that can list all TestSuite names contained within a Project. Thanks!
- 5 years ago
You can take help from below code:
testSuiteList = testRunner.testCase.testSuite.project.getTestSuiteList() testSuiteList.each{ log.info it.name }