I need to inject some custom code between several loading profiles in Gatling.
setUp(
scn.injectOpen(
atOnceUsers(10),
//some custom code here, before rampUsers(10) started
rampUsers(10).during(5)
).protocols(httpProtocol)
)
I need to inject some custom code between several loading profiles in Gatling.
setUp(
scn.injectOpen(
atOnceUsers(10),
//some custom code here, before rampUsers(10) started
rampUsers(10).during(5)
).protocols(httpProtocol)
)