I wanted to parameterize a set of values within another parameterized value. (Parameterizing values into a title which is also to be parameterized). Can someone please help me how to go about?
-
1Welcome. Have a look at asking questions. You might get downvotes for no code, among other reasons. It is hard to provide an answer with so little information. What (underlying) problem are you trying to solve? What did you try? What failed?Ray Oei– Ray Oei2018年11月06日 20:32:18 +00:00Commented Nov 6, 2018 at 20:32
1 Answer 1
Most probably you're looking for __V() function which can be used for evaluation of nested variables
For example, if you have
VAR_1
=foo
VAR_2
=1
and would like to get ${VAR1_${VAR_2}
= foo
The relevant syntax would be ${__V(VAR_${VAR_2},)}
Demo:
More information: Here’s What to Do to Combine Multiple JMeter Variables
Explore related questions
See similar questions with these tags.