0.18
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:
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.