github abstracta/jmeter-java-dsl v0.56
0.56

latest releases: v1.27, v1.26, v1.25.3...
24 months ago

This release allows adding listeners like dashboardVisualizer, htmlReporter, etc, to existing test plans, like the ones loaded from a JMX, though the new children method!

Here is an example:

import static us.abstracta.jmeter.javadsl.JmeterDsl.*;

import org.junit.jupiter.api.Test;
import us.abstracta.jmeter.javadsl.core.DslTestPlan;

public class TestPerformance {

  @Test
  public void test() throws Exception {
    DslTestPlan.fromJmx("test.jmx")
            .children(htmlReporter("report"))
                .run();
  }

}

Thanks to @BharadwajSamavedam for asking about this.

Don't miss a new jmeter-java-dsl release

NewReleases is sending notifications on new releases.