phonehome
7 years agoOccasional Contributor
Accessing Project Properties from a Groovy script (NOT Custom Properties)
Hi all, How can I read in the value of a non-Custom Project Property from within a TestCase-level Groovy script? Specifically, I need to get hold of the value of the read-only 'File' property whi...
- 7 years ago
Aha! Found it in another community post...
def myPath=testRunner.getTestCase().getTestSuite().getProject().getPath()
works.