0
votes

I am trying to perform load testing for my Web Application. Have created a Test plan with 16 scenarios using a single thread group. I have added multiple sampler requests under each scenario and used throughput controllers for each of these. But when the test is run, I noticed that the scenarios are running sequentially whereas i Want the scenarios to run in parallel. Can someone help me with this please.

1

1 Answers

0
votes

This is how JMeter works. Each thread (virtual user) starts executing Samplers upside down (or according to Logic Controllers)

enter image description here

When you add more threads (virtual users) there will be some concurrency, as it evidenced by __threadNum() and __time() functions output:

enter image description here

So just provide enough threads (virtual users) and loops (iterations) on Thread Group level and you will get the concurrency you're looking for