Create a breakpoint in the Gatling scenario.

Debugging a scenario it is useful to stop the execution and take a look on some execution result. For example let us assume the call

**exec(http("request_0").get("/").check(status.is(200))**

--------------------------------------^ wanna a breakpoint here


returns something which I did not expect. 

I would like to stop the result checking and evaluate the HTTP response using css() calls. Similar to

Not possible: gatling DSL components are builders, not the actual code that’s executed at runtime.