How to Add a Varying Number of Parameters in Apache JMeter
Last updated
Was this helpful?
Last updated
Was this helpful?
Some requests have more than one parameter, and the number of parameters may change. You can also add dynamic parameters according to your scenario.
To resolve this issue, JSR223 PreProcessor provided by can be used.
First, we add an as shown below, then we delete all the parameters and add JSR223 .
In this example, we choose the groovy language.
Then we add a for loop to determine how many parameters we will add, and add the parameter insert code to use it inside the for a loop.
for(int i=1; i<=10; i++){sampler.AddArgument("ParameterName"+i, "Value"+i);}
Happy testing!
When we run the , we add any number of parameters as shown in the figure.
If you don't see the answer to your question here, please to let us know! We're always improving our documentation.