| Package | Description |
|---|---|
| us.abstracta.jmeter.javadsl |
| Modifier and Type | Method and Description |
|---|---|
static DslWhileController |
JmeterDsl.whileController(Class<? extends PropertyScriptBuilder.PropertyScript<Boolean>> conditionClass,
BaseThreadGroup.ThreadGroupChild... children)
Same as
#whileController(PropertyScript, ThreadGroupChild...) but with support for
running at scale in a remote engine. |
static DslWhileController |
JmeterDsl.whileController(PropertyScriptBuilder.PropertyScript<Boolean> condition,
BaseThreadGroup.ThreadGroupChild... children)
Same as
#whileController(String, ThreadGroupChild...) but allowing to use Java type
safety and code completion when specifying the condition. |
static DslWhileController |
JmeterDsl.whileController(String condition,
BaseThreadGroup.ThreadGroupChild... children)
Builds a While Controller that allows to run specific part of the test plan while a given
condition is met in one thread iteration.
|
static DslWhileController |
JmeterDsl.whileController(String name,
Class<? extends PropertyScriptBuilder.PropertyScript<Boolean>> conditionClass,
BaseThreadGroup.ThreadGroupChild... children)
Same as
#whileController(Class, ThreadGroupChild...) but allowing to set a name which
defines autogenerated variable created by JMeter containing iteration index. |
static DslWhileController |
JmeterDsl.whileController(String name,
PropertyScriptBuilder.PropertyScript<Boolean> condition,
BaseThreadGroup.ThreadGroupChild... children)
Same as
#whileController(PropertyScript, ThreadGroupChild...) but allowing to set a
name which defines autogenerated variable created by JMeter containing iteration index. |
static DslWhileController |
JmeterDsl.whileController(String name,
String condition,
BaseThreadGroup.ThreadGroupChild... children)
Same as
#whileController(String, ThreadGroupChild...) but allowing to set a name which
defines autogenerated variable created by JMeter containing iteration index. |
Copyright © 2024. All rights reserved.