This plugin allows you to config, run Katalon Studio tests and view reports on Apache JMeter.
To use JMeter Integration plugin, you need to have Katalon Studio 7.0.0 as the minimum compatible version.
For details of the plugin sample project, please click here.
def testAction = {
WebUI.callTestCase(findTestCase('Test Cases/REST examples/Simple examples/api-2-search/Search issues/Search issues by jql'),
[('issue_key') : ''], FailureHandling.STOP_ON_FAILURE);
};
def sampler = CustomKeywords.'com.katalon.jmeter.JMeterKeyword.createSampler'(testAction);
3.Run the JMeter test with the JMeter runner.
def runner = new KatalonJMeterRunner();
runner.run(sampler);
4.The Katalon's test reports are available in the Reports/<test time>/<test suite's name>
directory.
5.The JMeter's test reports are available in the Reports/<test time>/<test suite's name>/jmeter-report
directory.
Visit Katalon Forum for Plugin related discussions.