JMeter - Execution Order?

1.9k Views Asked by At

I have a test plan configured as so:

Jmeter

When I execute the test plan, all 3 simple controllers are executed at the same time, even though I have 1 thread set and 1 loop.

I want it to execute samples in "XML Import" then "UI - Quick Entry" then "UI - Reprint" rather than them all being executed at the same time.

Why is this happening?

2

There are 2 best solutions below

0
On

I had to move the two webdrivers into their own threads, this is now working as I expected it to.

0
On

You can have only one Firefox Driver Config element per Thread Group, each thread (virtual user) will kick off a separate browser instance.

JMeter executes samplers upside down (unless you have Logic Controllers specifying different behaviour). See Using Selenium with JMeter's WebDriver Sampler for more details on Selenium and JMeter integration.