Home > Blockchain >  Jmeter: Sequential and Parallel execution
Jmeter: Sequential and Parallel execution

Time:11-14

I want to run the login thread group always first and wait for it to finish. And then in the same test plan run other thread group in parallel.

e.g. Login-1 (always first ) Thread group-2 (after login in parallel) Thread group-3 (after login in parallel)

CodePudding user response:

Take a look at enter image description here

  • Here first thread group is a setUP Thread Group which will be executed once, Rest are regular thread groups.
    (You can run setUp Thread group with as many number of users and duration you want, other Regular Thread groups will wait until setup thread is completed)
  • On test plan level uncheck "Run Thread Groups consecutively"
  • Related