JMeterPeriodically when implementing advanced JMeter test scenarios, you may need to build a JMeter Variable from two or more other variables. This short post will look at how to do just that. These test scenarios might originate from a Counter Test Element or Function, the __threadNum() function, a regular expression resulting in multiple matches or perhaps a different need. Let's imagine the following situation: There are 2 JMeter Variables: myVar_1 with the value of foomyVar_2 with the value of bar There is also a Counter test element with the reference name of counter. The objective is to have a dynamic combined variable which consists of: ● Prefix: myVar_● Postfix: ${counter} variable value that is dynamic The solution is using the __V() function which can be used to evaluate composite variables. The syntax is: ${__V(PREFIX${POSTFIX})} In the case above, the resulting composite variable reference would be: ${__V(myVar_${counter})} See how to this in the image below. One More Hint If you build a data-driven test and have parameters in a file that you're reading by using the __StringFromFile() or __FileToString() functions, and the file has JMeter Variables which need to be substituted with the corresponding values in runtime - you need to use the __eval() function so that the variable value could be resolved. Looking for More Info on JMeter Functions? For more information on the above and other useful JMeter Functions check out the following articles: Using JMeter Functions - Part IUsing JMeter Functions - Part IIHow to Use JMeter Functions - Part III Want to Get Expert Answer to your Most Biggest JMeter Questions? Join us for our upcoming interactive online session with Andrey Pokhilko, founder of JMeter-Plugins.org and a core JMeter contributor. After a brief opening look at some of the latest developments following the release of JMeter 3.0, Andrey dedicate most of the session to answering your JMeter questions, with live demonstrations included where possible. If you have any questions regarding using composite JMeter Variables don't hesitate to use discussion form below. Apache JMeterJMetercountervariableLoad testingperformance testingPerformanceauthor_info: Dmitri Tikhanski is a Contributing Writer to the BlazeMeterauthor_name: Dmitri Tikhanski
BlazeMeter is a California-based continuous testing platform that offers solutions such as functional, performance and API testing for web and mobile applications.