Reputation: 121
I am trying to run the same thread group after a certain interval. Example - JMeter will run thread group A and execute all http requests inside it and let's say for example after 20 sec it will run thread group A again and this loop should carry on until I manually stop the script.
What I have designed right now is something like this-
Thread Group A
While Controller (I gave some condition so that it is always true)
Http request 1
Http request 2
Constant timer (20sec)
but this only puts 20sec delay between each http call.
Upvotes: 0
Views: 1811
Reputation: 168052
20000
millisecondsYou might also be interested in How to Easily Implement Pacing in JMeter in order to be able to configure more complex delay scenarios
Upvotes: 2