|
Class Summary |
| AbstractFunction |
Provides common methods for all functions |
| BeanShell |
A function which understands BeanShell |
| CharFunction |
Function to generate chars from a list of decimal or hex values |
| CSVRead |
The function represented by this class allows data to be read from CSV files. |
| EscapeHtml |
Function which escapes the characters in a String using HTML entities. |
| EvalFunction |
Function to evaluate a string which may contain variable or function references. |
| EvalVarFunction |
Function to evaluate a string which may contain variable or function references. |
| FileRowColContainer |
File data container for CSV (and similar delimited) files Data is accessible
via row and column number |
| FileWrapper |
This class wraps the FileRowColContainer for use across multiple threads. |
| IntSum |
Provides an intSum function that adds two or more integer values. |
| IterationCounter |
|
| JavaScript |
|
| JexlFunction |
A function which understands Commons JEXL |
| LogFunction |
Function to log a message. |
| LogFunction2 |
Function to log a message. |
| LongSum |
Provides a longSum function that adds two or more long values. |
| MachineName |
|
| Property |
Function to get a JMeter property, and optionally store it
Parameters:
- property name
- variable name (optional)
- default value (optional)
Returns:
- the property value, but if not found:
- the default value, but if not defined:
- the property name itself |
| Property2 |
Function to get a JMeter property, or a default. |
| Random |
Provides a Random function which returns a random long integer between a min
(first argument) and a max (second argument). |
| RegexFunction |
Implements regular expression parsing of sample results and variables |
| SetProperty |
Function to set a JMeter property
Parameters: - property name - value
Usage:
Set the property value in the appropriate GUI by using the string:
${__setProperty(propname,propvalue[,returnvalue?])} |
| SplitFunction |
Function to split a string into variables
Parameters:
String to split
Variable name prefix
String to split on (optional, default is comma)
Returns: the input string
Also sets the variables:
VARNAME - the input string
VARNAME_n - number of fields found
VARNAME_1..n - fields
|
| StringFromFile |
StringFromFile Function to read a String from a text file. |
| ThreadNumber |
Function to return the current thread number. |
| TimeFunction |
__time() function - returns the current time in milliseconds |
| UnEscape |
Function to unescape any Java literals found in the String. |
| UnEscapeHtml |
Function to unescape a string containing entity escapes
to a string containing the actual Unicode characters corresponding to the escapes. |
| Variable |
Function to get a JMeter Variable
Parameters:
- variable name
Returns:
- the variable value, but if not found
- the variable name itself |
| XPath |
The function represented by this class allows data to be read from XML files. |
| XPathFileContainer |
File data container for XML files Data is accessible via XPath |
| XPathWrapper |
This class wraps the XPathFileContainer for use across multiple threads. |