How to get the test suite status in soapui using groovy script?
SOLVED- Bookmark
- Subscribe
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
How to get the test suite status in soapui using groovy script?
Hi,
Iam writing a script to capture project execution status in which i need to capture test suite run status as well. I'm not able to get the test suite status. Appreciate if anyone can help me in capturing the test suite status.
Solved! Go to Solution.
- Bookmark
- Subscribe
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
I have a project level teardown script that @Radford scripted that may help, although it provides testcase, project and testsuite stats.
Im driving at moment but once im back home, i'll post the script
Ta,
Rich
- Bookmark
- Subscribe
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
Please take a look at the answer in the below thread, you get what you need.
https://stackoverflow.com/questions/41700437/creating-a-test-report-from-project-level-tear-down-scr...
Note that, only test step will have actual status, if all the test steps passes then a test case is considered pass and all the test cases are passed then a suite is passed.
Regards,
Rao.
- Bookmark
- Subscribe
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
- Bookmark
- Subscribe
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
Huhu
You can use the event: TestSuiteRunListener.afterRun
log.info "Status test suite " + testRunner.testSuite.name + " " + testRunner.status
I use events for example to send my results to testrail. So you should be able to do whatever you need with these events.
A test suite teardown script should be possible too. You should be able to use runner.status
Cheers, Sabine
- Bookmark
- Subscribe
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
- Bookmark
- Subscribe
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
Great job everyone! 😊
Hi @Prabaharan, were you able to solve your question with either of the suggestions? Please share your progress with us!
Sonya Mihaljova
Community and Education Specialist
- Bookmark
- Subscribe
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
Hi Team,
Thanks for the quick reply's. Appreciate your help.
