0

I am running load test with jmeter with selenium webdriver sample. Purpose is to load test and understand amount of time taken by 500 users to complete a survey on a web dash board. When executing i need to control the number of concurrent threads, and it should be more than 10. New thread should be spawned if number of concurrent threads becomes less that 10. How do i achieve this. Any pointer in this direction will be helpful.

Regards, Seshan K.

2 Answers2

0

According to this article you can set the amount of threads in the Stepping Thread Group. This might be great to read through.

MatMat
  • 878
  • 3
  • 8
  • 24
0

You must be looking for the Concurrency Thread Group

This thread group offers simplified approach for configuring threads schedule. It is intended to maintain the level of concurrency, which means starting additional during the runtime threads if there's not enough of them running in parallel.

So it is just enough to install the Concurrency Thread Group using JMeter Plugins Manager and use it instead of normal JMeter's Thread Group

JMeter Concurrency Thread Group

Dmitri T
  • 159,985
  • 5
  • 83
  • 133
  • Can u pls have a look at this : https://stackoverflow.com/questions/58066367/jmeter-multiple-concurrent-users-in-single-thread-group – Number945 Sep 23 '19 at 16:21