Terminate All

Use terminateAll if you need to stop a current scenario and all the scenarios after that. Consequent scenarios will be marked as skipped in the produced report. package scenarios.concept import static org.testingisdocumenting.webtau.WebTauGroovyDsl.* scenario("first test") { terminateAll('hard stop of the rest of the tests') } scenario("second test") { browser.open("/app") } scenario("third test") { http.get("/weather") { temperature.shouldBe < 100 } } Test two and three in the example above will not be executed. Browser will not be opened and REST API will not be called.