The BeanShell Timer can be used to generate a delay. For full details on using BeanShell, please see the BeanShell website. The test element supports the ThreadListener and TestListener methods. These should be defined in the initialisation file. See the file BeanShellListeners.bshrc for example definitions. Control Panel Parameters Attribute | Description | Required |
---|
Name | Descriptive name for this element that is shown in the tree. The name is stored in the script variable Label | No | Reset bsh.Interpreter before each call | If this option is selected, then the interpreter will be recreated for each sample. This may be necessary for some long running scripts. For further information, see Best Practices - BeanShell scripting . | Yes | Parameters | Parameters to pass to the BeanShell script. The parameters are stored in the following variables:- Parameters - string containing the parameters as a single variable
- bsh.args - String array containing parameters, split on white-space
| No | Script file | A file containing the BeanShell script to run. The file name is stored in the script variable FileName The return value is used as the number of milliseconds to wait. | No | Script | The BeanShell script. The return value is used as the number of milliseconds to wait. | Yes (unless script file is provided) |
Before invoking the script, some variables are set up in the BeanShell interpreter: - log - (Logger) - can be used to write to the log file
- ctx - ( JMeterContext ) - gives access to the context
- vars - ( JMeterVariables ) - gives read/write access to variables: vars.get(key); vars.put(key,val); vars.putObject("OBJ1",new Object());
- props - (JMeterProperties - class java.util.Properties) - e.g. props.get("START.HMS"); props.put("PROP1","1234");
- prev - ( SampleResult ) - gives access to the previous SampleResult (if any)
For details of all the methods available on each of the above variables, please check the Javadoc If the property beanshell.timer.init is defined, this is used to load an initialisation file, which can be used to define methods etc for use in the BeanShell script. |