I want to run my multiple Gatling simulations at the same time from Gatling.bat.
Please let me know how is it possible.
Thanks in advance..
You have to run more than one command parallel. So according to Gatling documentation and this Stackoverflow answer you could do this for example by:
start bin/gatling.bat -s SimulationClass1
start bin/gatling.bat -s SimulationClass2
start bin/gatling.bat -s SimulationClass3