Forum Discussion
richie
7 years agoCommunity Hero
Hi 678
Someone else put a project together to do something - it lists out all the REST requests within a project
It's just a bit of groovy
def project = testRunner.testCase.testSuite.project
log.info "Interfaces in project " + project.name
for( iface in project.interfaceList )
{
log.info "Interface: " + iface.name
}
The above is contained within a groovy step.
Would this suffice?
Cheers,
richie