execute_jmeter_test
Run JMeter performance tests by specifying the test file (.jmx), GUI mode, and custom properties. Simplify test execution and management through structured inputs.
Instructions
Execute a JMeter test.
Args: test_file: Path to the JMeter test file (.jmx) gui_mode: Whether to run in GUI mode (default: False) properties: Dictionary of JMeter properties to pass with -J (default: None)
Input Schema
Name | Required | Description | Default |
---|---|---|---|
gui_mode | No | ||
properties | No | ||
test_file | Yes |
Input Schema (JSON Schema)
{
"properties": {
"gui_mode": {
"default": false,
"title": "Gui Mode",
"type": "boolean"
},
"properties": {
"additionalProperties": true,
"default": null,
"title": "Properties",
"type": "object"
},
"test_file": {
"title": "Test File",
"type": "string"
}
},
"required": [
"test_file"
],
"title": "execute_jmeter_testArguments",
"type": "object"
}