0

In JMeter, I need to parameterize sequence of inter-linked values using "UserDefinedVariables" control. I am able to achieve the same with "CSVDataSetConfig", but I need to use "UserDefinedVariables" as I have only two rows of input data which I am sending to my API request and i will repeat the same values for further iterations.

Example:

enter image description here

Expected Result:

Iteration 1: Yasir,Nisha,India

Iteration 2: Azar,Riya,Dubai

Thanks in advance.

Yasir
  • 81
  • 1
  • 3
  • 20

1 Answers1

0

Maybe User Parameters is what you're looking for:

enter image description here

You will get something like:

enter image description here

More information: JMeter Parameterization: The Complete Guide

Dmitri T
  • 159,985
  • 5
  • 83
  • 133
  • Thanks Much Dmitri.. you are always my hope :-). but if i use UserParameter and design above, when i run with 1 user and multiple iterations and it always picking up the same value. Can u suggest on this? – Yasir Jan 27 '23 at 16:57