How can i get from Project Teardown
1) Total Test Cases Count which is Enabled only not disabled
2) Total Time taken for execution
Solved! Go to Solution.
Hi @678
1) I think this topic will be useful for you: https://community.smartbear.com/t5/SoapUI-Open-Source/How-to-find-a-test-step-is-enabled-or-disabled...
Integer counter = 0 project.testSuiteList.each { it.testCaseList.each { if (it.disabled == false) { counter = counter + 1 } } } log.info counter.toString()
2) You can use this command: runner.getTimeTaken()
Community, has anyone faced a similar question? Can we assist @678?
Hi @678,
It looks like this is not a very generic task. Could you please refer your question to our ReadyAPI Support Team? You can reach out to them here:
https://support.smartbear.com/message/?prod=ReadyAPI
Hi @678
1) I think this topic will be useful for you: https://community.smartbear.com/t5/SoapUI-Open-Source/How-to-find-a-test-step-is-enabled-or-disabled...
Integer counter = 0 project.testSuiteList.each { it.testCaseList.each { if (it.disabled == false) { counter = counter + 1 } } } log.info counter.toString()
2) You can use this command: runner.getTimeTaken()
Subject | Author | Latest Post |
---|---|---|