Hello there,
I use Gatling 3.2.1.
In my gatling script I have `.repeat` like below.
When I run this, only the first repeat block works and the repeat block at the end is ignored. Any idea what am I doing wrong?
var protocol : Protocol = http.disableCaching.disableWarmUp.
val scenarioA = scenario ("A")
.feed(users)
.repeat(2) {
exec(postRequest1)
}
.exec(updateRequest1)
.exec(updateRequest2)
.repeat(5) {
exec(getRequest1)
exec(getRequest2)
}
.inject(atOnceUsers(5))
.protocols(protocol)
I have tried various combinations of `.disableCaching` `.disableWarmUp` `.enableHttp` in `http`, but still no luck.
Highly appreciate your help.
Many thanks.
Puji.