thinktime - qlik-oss/gopherciser GitHub Wiki
Simulate user think time.
Note: This action does not require an app context (that is, it does not have to be prepended with an openapp
action).
-
type
: Type of think time-
static
: Static think time, defined bydelay
. -
uniform
: Random think time with uniform distribution, defined bymean
anddev
.
-
-
delay
: Delay (seconds), used with typestatic
. -
mean
: Mean (seconds), used with typeuniform
. -
dev
: Deviation (seconds) frommean
value, used with typeuniform
.
This simulates a think time of 10 to 15 seconds.
{
"label": "TimerDelay",
"action": "thinktime",
"settings": {
"type": "uniform",
"mean": 12.5,
"dev": 2.5
}
}
This simulates a think time of 5 seconds.
{
"label": "TimerDelay",
"action": "thinktime",
"settings": {
"type": "static",
"delay": 5
}
}