Hi Artem,
I've take some try on the plugin, and I found that I had done the same things using the CSV Data Set Config (I think).
I made configuration as follow:
Variable Name(comma-delimited): Ref,Value
And set the parameters in the request as follow:
Name: | Value:
Reference | ${Ref}
Name: | ${Value}
When the threads number set to two, it will only run with two lines in the CSV, and it run again from the beginning of the CSV if I add a Loop Controller in it.
What I expected:
Ref1,Value1 -> Loop cycle 1: thread 1
Ref1,Value2 -> Loop cycle 2: thread 1
Ref1,Value3 -> Loop cycle 3: thread 1
Ref1,Value4 -> Loop cycle 4: thread 1
Ref1,Value5 -> Loop cycle 5: thread 1
Ref2,Value1 -> Loop cycle 1: thread 2
Ref2,Value2 -> Loop cycle 2: thread 2
Ref2,Value3 -> Loop cycle 3: thread 2
Ref2,Value4 -> Loop cycle 4: thread 2
Ref2,Value5 -> Loop cycle 5: thread 2
Or should I change the format of the source CSV (is it easier for me to achieve my expectation) ?