-1

I am using JMeter for Load and Performance testing. I have 3 scenarios to test as follows;

Importing Files
Downloading Reports
Submitting Form

I have recorded this script with one user. Now I want to run these three scenarios at a same time with 3 threads for one scenario. I can add 3 as a value in threads but how to make all the three action running at a time? Any suggestions?

Is this the way enter image description here

Amaze_Rock
  • 163
  • 3
  • 16

1 Answers1

0
  1. Each JMeter thread (virtual user) executes Samplers upside down (or according to logic controllers). It means that if you add 3 users - they will execute first Importing Files then Downloading Reports then Submitting Form.
  2. Normally different groups of business users should go to separate Thread Groups so you can split these recorded scenarios into 3 Thread Groups and set how many users you want to execute each of them
  3. If you need to run 3 requests with 3 users at exactly the same moment - take a look at Synchronizing Timer
  4. If you need to run 3 requests with 1 user at exactly the same moment - take a look at Parallel Controller
Dmitri T
  • 159,985
  • 5
  • 83
  • 133