views:

26

answers:

1

I have 2 thread groups in my test case. Group A should complete first before Group B starts to execute(at least I though this was the way it worked).

Unfortunately they are firing at the same time and tests from both tread groups are executing, what can I do to prevent this from happening. Not to allow group B to start before group A is done executing?

+3  A: 

Go to the test plan element and check the box "Run Thread Groups consecutively". This will give you what you want.

http://jakarta.apache.org/jmeter/usermanual/component_reference.html#Test_Plan

BlackGaff
@BlackGaff excellent thanks, may I ask, since I consider Jmeter documentation to be very poor, where did you get the most info about using Jmeter?
c0mrade
I agree that the documentation is a bit lacking. I get *most* of my info from trial and error combined with the user manual combined with google searches that generally point me to the JMeter mailing list.
BlackGaff
Mailing List Archives: http://mail-archives.apache.org/mod_mbox/jakarta-jmeter-user/
BlackGaff
@BlackGaff thanks
c0mrade