Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

How to get value from property in BeanShell (jmeter)

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.

like image 393
Ololowa QA Avatar asked Jun 23 '15 12:06

Ololowa QA


1 Answers

In the first Thread Group:

props.put("erroriden", vars.get("erroriden1"));

In the second Thread Group:

String[] erroriden = props.get("erroriden").split(",");
  • JMeterVariables scope is limited to the current thread group only
  • JMeter Properties are usual Java Properties which are global for JVM instance
  • See How to use BeanShell: JMeter's favorite built-in component guide for more information on using Beanshell in JMeter.
like image 60
Dmitri T Avatar answered Oct 23 '22 15:10

Dmitri T