Hello guys,
Sorry for maybe this stupid question but I’m totally new to gatling and especially maven and I wasn’t able to find anything helpful.
I was able to finally make my test run using maven plugin but what I need is to run in particular order.
First I need to run simulation that is grabbing tokens that I’m using later .
So in my pom.xml I have something like that
io.gatling gatling-maven-plugin ${gatling-plugin.version} true grabTokens execute perf.GetToken getModel execute perf.GetTreeSo now when I run my simulations : mvn gatling:execute and instead of first running the perf.GetToken simulation it is always starting
from the second one that will fail because it doesn’t have required data.
What I’m doing wrong or how can I force correct sequence order ? I was sure that that order that I define in pom will be the one in
which it will be executed.
Regards
Lukasz