Hello,
The splitUsers “splitUsers(100) into atOnceUsers(5) separatedBy(10 seconds)” option is not available in version 3.0 of gatling, is there another option suitable with the current version which plays the same role?
Please i need help.
Hello,
The splitUsers “splitUsers(100) into atOnceUsers(5) separatedBy(10 seconds)” option is not available in version 3.0 of gatling, is there another option suitable with the current version which plays the same role?
Please i need help.
Thanks Stéphane for your response.
In my case i want to inject 100 users simultaneous as following :
setUp(scn.inject(
atOnceUsers(100),
nothingFor(1 seconds),
atOnceUsers(100),
nothingFor(1 seconds),
atOnceUsers(100),
nothingFor(1 seconds),
atOnceUsers(100),
nothingFor(1 seconds),
atOnceUsers(100))
.protocols(httpProtocol))
How to do it in one ligne?