I have got several thread groups. I want to use variable from the first group. In second group this var should be used in BeanShell. So: in first thread group I created BeanShell Assertion with this code:
${__setProperty(erroriden, ${erroriden1})};
In second thread group I have BeanShell pre-processor. If has line like this:
String[] erroriden = (vars.get("erroriden")).split(",");
I tried some variations like this:
String[] erroriden = (vars.get("__property(erroriden)")).split(",");
String[] erroriden = (vars.get("${__property(erroriden)}")).split(",");
but it doesn't work. Please help to use ${__property(erroriden)} in BeanShell pre-processor.
In the first Thread Group:
props.put("erroriden", vars.get("erroriden1"));
In the second Thread Group:
String[] erroriden = props.get("erroriden").split(",");