Reputation: 109
And I would like to evaluate i.e.
${productId_1}
${productId_2}
It should be as simple as:
${__V(productId${counter})}
Same approach applies to __counter() function:
${__V(productId_${__counter(,)})}
How can I display the value in Beanshell processor/sample instead of the thread name
Upvotes: 0
Views: 1302
Reputation: 109
This is how one can display or use the counter function value or counter in conjunction with variable I am using this inside the Beanshell sample under the for each controller
Product = vars.get("Product_" + ${__counter(,)});
//save counter value into variable
counter = ${__counter(,)}; log.info("Counter ="+counter);
Upvotes: 1
Reputation: 168072
It would be something like:
counter
: vars.get("counter")
productId_${counter}
: vars.get("productId_" + vars.get("counter"))
vars
is a shorthand for JMeterVariables class instance.
Demo:
Be aware that starting from JMeter 3.1 it is recommended to use JSR223 Test Elements and Groovy language for any form of scripting so consider migrating to Groovy on next available opportunity. See Apache Groovy - Why and How You Should Use It guide for more details if needed.
Upvotes: 0