In my project, I need to pass 1 value for each thread and same value will be used for any number of times.
Is there any option in JMeter?
For example:
My question is simple.
In a thread group, i will assign 2 threads and 10 loops (10 loops for each thread).
My requirement is, I have to use first row data for first thread and same data should be used for 10 loops and second row data for second thread and same data should be used for 10 loops.
E.g.:
In csv file, I will declare as below:
43
42
45
46
During execution, thread 1 should always take 43 even for 10 loops, thread 2 should take 42 always.
45 and 46 should never be used if i declare just 2 threads in the test plan.