Mishi
Mishi

Reputation: 676

How to run one thread group at a time in Jmeter

I have 3 different Thread groups i.e CreateClient, GetClient and "ListClient" but when I start running the test then all these thread group run one by one. If I only want to run thread group "Get Client" then how can I do that?

enter image description here

Upvotes: 7

Views: 7415

Answers (2)

Naveen Kumar R B
Naveen Kumar R B

Reputation: 6398

you can select the Thread Group that you want to execute using Validate option.

Right click on selected Thread Group (Get Client), click on Validate. JMeter runs only Get Client Thread Group.

From JMeter 3.0 change log (refer New and Noteworthy section):

New validation feature, in one click run a selection of Thread Groups with 1 user, no pause and 1 iteration

Upvotes: 8

Guru
Guru

Reputation: 443

You can disable(Right click on thread group) the thread group which you don't want to execute.

Upvotes: 10

Related Questions