loadimpact/jmeter-to-k6
Convert JMeter .jmx files to k6 JavaScript for load and performance testing.
963
Converts a JMeter .jmx file into the equivalent k6 JavaScript file for load and performance testing.
The following JMeter features are supported in the conversion:
If you have a JMeter .jmx file located at /path/to/jmeter-files/MyTest.jmx
, you use the Docker container as follows:
docker run -it -v "/path/to/jmeter-files/:/output/" loadimpact/jmeter-to-k6 /output/MyTest.jmx -o /output/MyTestOutput
After the conversion, you can run the resulting k6 test script as follows:
k6 run /path/to/jmeter-files/MyTestOutput/test.js
docker pull loadimpact/jmeter-to-k6