Forum Discussion

mh350's avatar
mh350
Occasional Contributor
8 years ago
Solved

How to get the name of the soapui project file ?

Hi    I'd like to know how to retrieve that name. The closest I got to is "new com.eviware.soapui.support.GroovyUtils(context).projectPath" which provides the path. Incidentally project.name provi...
  • Radford's avatar
    8 years ago

    Running from a Groovy Test Step the following code will get the full filename and path:

     

    log.info (testRunner.getTestCase().getTestSuite().getProject().getPath())

     

    getPath() is defined in the Project interface.

     

    The full Ready API JavaDocs can be found here.