Forum Discussion
Alex99
8 years agoContributor
You can start load tests using a groovy script.
If you have, for example, such a project structure click me.
You can use this script to start the load test:
log.info("start")
runner = context.testCase.testSuite.getTestCaseByName("TestCase").getLoadTestByName("LoadTest").run()
runner.waitUntilFinished()
log.info(runner.getTimeTaken() + "ms")
log.info("done")