JMeter is a freeware tool which is in high demand. But lack of some features restricts JMeter to become a powerful tool. One of them is not getting some important features directly like Parameter Setting which is easily available in LoadRunner (Refer to LoadRunner Parameter Settings). As this feature is not directly available in JMeter, so you need to make use of some of the existing elements in the JMeter and implement the mode of accessing the parameter value as required. For this purpose, you would require 4 elements to add under Thread Group:
- Loop Controller
- Counter
- CSV Data Set Config
- BeanShell Sampler
The Parameter file i.e. CSV file has the following values:
Add all the above-mentioned elements under a thread group (Refer to Figure 02)
Click ‘Loop Controller’ and provide the value in ‘Loop Count’ field which should be equal to the number of occurrences. In this example, I have taken 3 as loop count i.e. I want to use 3 values from the list within the same iteration. Refers to Figure 03.
Let’s have a look at the CSV Data Set Config and apply the same in your scenario. Make sure you provide the correct CSV file path and variable name.
The ‘Counter’ element is used to generate a new variable each time in which parameter value will be substituted in the sampler request (Pay attention to number format as in a similar way it has to be substituted in sampler request)
Now, write the given code the BeanShell Sampler. This code will read the value from the CSV file and assign it to the variable name generated by the counter.
So, here we have completed the set-up to generate the unique value at each occurrence of the parameter.
Now, come to the sampler request part where we will use these variables. To illustrate the scenario, I have used a dummy sampler. Let’s consider below is my original request.
Now, I will modify the request as per the setup to pass the different values from the parameter list at each occurrence.
Now, run the test and see the result in the ‘View Result Tree’ listener.
Important Notes:
- Make sure you have sufficient test data to simulate the ‘Unique Each Occurrence’ scenario.
- ‘Recycling of Test Data’ and ‘Stop Thread when test data is exhausted’ settings can be controlled by the CSV Data Set Config element setting. Use those settings wisely.
You may be interested:
Very nice thank you for sharing
Thanks Venkat!
Hi Can you please attach sample jmter file or may be github link for this example. So that would be much helpfull.
Thanks,
Prasad
Hi Prasad,
even you can simulate the scenario by following the screenshots. This is a pretty simple scenario of JMeter.
it will work for multiple users?? to pick five values for each user at a time, for ten users
please help me bro in this scenario…
thanks
Sai
How to add multiple column’s in C1,C2,C3 etc.. with the above logic