InterviewSolution
Saved Bookmarks
| 1. |
How to stop a Groovy Script in SoapUI? |
|
Answer» For stopping a Groovy SCRIPT in SoapUI, we can USE: testRunner.cancel(). It will stop the execution of the running Groovy Script. If we want to fail it, we can use testRunner.fail() or try pressing the combination Ctrl+Z or the ESCAPE KEY. |
|