Forum Discussion
- KarelHusaChampion Level 1
ritesh23487, you can check the following script:
def tcResults = runner.getResults() tcResults.each { def tcRunner = it log.info "TestCase: " + tcRunner.getTestCase().getName() tcRunner.getResults().each { log.info "NAME:" + it.getTestStep().getName() + " STATUS:" + it.getStatus() } }
You can execute the script as a tear down script of your test suite (the runner object is an instance of TestSuiteRunner).
Karel
Related Content
- 3 years ago
Recent Discussions
- 15 years ago