Hi.
I use Gatling version 2.0.0-M3a and have some trouble with set up pause between requests.
I have scenario like this:
.exec(
do some stuff
)
.pause(1500 milliseconds)
.exec(
do some other stuff
)
But I see in server logs that time before second request wasn’t 1.5 sec, as I want it. Log doesn’t show milliseconds, but both requests was received on 19:04:09, for example.
How I can properly set up a pause between 2 requests ?