to get status of testcase at project level,testcases level in tearscript
- Bookmark
- Subscribe
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
09-09-2016
06:59 AM
09-09-2016
06:59 AM
to get status of testcase at project level,testcases level in tearscript
how to get status of testcase at project level,testcases level in tearscript to know teststep fail or pass status ? do i need to import any library?
1 REPLY 1
- Bookmark
- Subscribe
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
09-12-2016
07:11 AM
09-12-2016
07:11 AM
You can get the status in the teardown as:
for ( testCaseResult in runner.results ){ log.info testCaseResult.getStatus().toString() }
You can see an example here - https://www.soapui.org/scripting-properties/tips-tricks.html#8-2-Logging-the-result-messages-of-all-...
