Get a list of TestSuite names in soapUI via Groovy Script

Add a Groovy Script test step and add the following:

def project = context.testCase.testSuite.project;

for (testSuite in project.testSuiteList) {
log.info testSuite.name;
}

Leave a Reply

Your email address will not be published. Required fields are marked *

This site uses Akismet to reduce spam. Learn how your comment data is processed.