I\'m sure I\'ve already done this in the past but somehow I cannot figure out how ;-) So, here\'s my problem:
I\'m trying to create a JUnit test plan in which a HTTP re
To obtain a random variable value from a list, first declare as User variables the list or available values, with a prefix and a incremental index:
country_1 Spain
country_2 France
country_3 Portugal
country_4 Italy
country_5 England
Then you can obtain a random value from the list concatenating the prefix with a random index in the interval:
${__V(country_${__Random(1,6,)})} --> "Spain", "France", "Portugal", etc...
Take a look to this answer for complete explanation.
Concerning implementing ${__StringFromArrayAtRandomIndex('3', '2', '54', '42')}
.
Suppose you can easily implement your scenario using e.g. BeanShell Sampler / BeanShell PostProcessor with a bit of code.
E.g.:
Set your source variable (via e.g. User Defined Variables):
Name Value categories 3,2,54,42,37
(i.e. use comma as delimiter, no spaces before and after comma).
Use add BeanShell Sampler/PostProcessor with the following code:
import java.util.Random; String[] categories = (vars.get("categories")).split(","); int idx = new Random().nextInt(categories.length); String category = (categories[idx]); vars.put("categoryId", category);
${categoryId}
.There are several ways you can do this.
Given you have an array of values you could:
You reference them exactly as you have listed: ${varName}
The Simplest solution without variables can be done using vars.getIteration()
:
/test/foo.html?id=${__groovy(vars.getIteration())}