Samarthya Gupta
Samarthya Gupta

Reputation: 1

How to run the thread groups consecutively and then start again the same cycle again in jmeter

How to run the thread groups consecutively say thread group 1, then 2, then 3 till Thread Group 'N', after that it should again repeat the same cycle thread group 1, thread group 2 and so on for 100 times in JMeter.

Upvotes: 0

Views: 41

Answers (1)

Dmitri T
Dmitri T

Reputation: 168217

I can think of the following possible options:

  1. Run the whole JMeter test for 100 times using your operating system scripting mechanisms (Windows batch files or Linux shell scripts)
  2. Schedule the test execution using built-in operating system mechanisms like Task Scheduler for Windows or cron for Linux
  3. Use a 3rd-party orchestration software, i.e. Continuous Integration server like Jenkins

Upvotes: 1

Related Questions