Regarding the execution order of parameters when importing csv in jmeter for testing

Today, I tried to import csv to jmeter for testing, set it to 5 threads, start time 0s, loop 5 times, csv has 30 lines in total;

I thought the execution process is: five threads run a certain line of parameters at the same time (parallel), then after running all the parameters in csv, it will loop 30 times.

But after testing, it was found that this was not the case

The actual execution process is : five threads run the first\second\third...\fifth line of parameters at the same time (parallel),

So execute the csv once, so the parameters only need to loop 30/5=6 times, that is, the URLs of the five threads running at the same time are different

Guess you like

Origin blog.csdn.net/THMAIL/article/details/100142189