github abstracta/jmeter-java-dsl v0.18
0.18

latest releases: v1.26, v1.25.3, v1.25.2...
2 years ago

Now is possible to define complex thread group configurations and even chart them for review!

Eg:

threadGroup()
    .rampToAndHold(10, Duration.ofSeconds(5), Duration.ofSeconds(20))
    .rampToAndHold(100, Duration.ofSeconds(10), Duration.ofSeconds(30))
    .rampTo(200, Duration.ofSeconds(10))
    .rampToAndHold(100, Duration.ofSeconds(10), Duration.ofSeconds(30))
    .rampTo(0, Duration.ofSeconds(5))
    .showThreadsTimeline()

Check the new section in user guide for more details.

Additionally, you can now visualize any test element in it's GUI component using new .showInGui() method, which will open a popup window. Here is an example:

Ultimate Thread Group GUI

Warning: This version deprecates DslThreadGroup.rampUpPeriod(Duration) method.

Finally, all DSL methods and classes have been annotated with proper dsl version for easy tracking of features versions.

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

NewReleases is sending notifications on new releases.