Hi
I have something like this in my script
.asLongAs(session => session("status").as[String] != "done"){
exec(http("5 loop until done")
.get("/isitdone")
.check(jsonPath("$.status").saveAs("status"))
)
}
In the gatling report, it doesn't give me a total time that asLongAs took. Is there a way to get that listed?
Thanks