Forum Discussion
- Sure!
//TestSuites in a Project:
for( testSuite in project.testSuiteList ) {
log.info testSuite.name
}
//TestCases in a TestSuite:
for( testCase in testSuite.testCaseList ) {
log.info testCase.name
}
//TestSteps in a TestCase:
for( testStep in testCase.testStepList ) {
log.info testStep.name
}
Regards,
Dain
eviware.com - Kathryn_O_MalleContributorThanks!