You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Enhancement/569 change reuse user randomizer (#24)
* Make session id count also for reuse user iterations
* Determinism not broken due to a failed iteration when using reuse user flag
* Bugfix for determinsm and thinktime actions
* Randomizer can now be overriden by other by users or future schedulers
Copy file name to clipboardExpand all lines: generatedocs/generated/documentation.go
+2-2Lines changed: 2 additions & 2 deletions
Original file line number
Diff line number
Diff line change
@@ -161,7 +161,7 @@ var (
161
161
},
162
162
"thinktime": {
163
163
Description: "## ThinkTime action\n\nSimulate user think time.\n\n**Note:** This action does not require an app context (that is, it does not have to be prepended with an `openapp` action).\n",
Examples: "### Examples\n\n#### ThinkTime uniform\n\nThis simulates a think time of 10 to 15 seconds.\n\n```json\n{\n\"label\": \"TimerDelay\",\n\"action\": \"thinktime\",\n\"settings\": {\n\"type\": \"uniform\",\n\"mean\": 12.5,\n\"dev\": 2.5\n } \n} \n```\n\n#### ThinkTime constant\n\nThis simulates a think time of 5 seconds.\n\n```json\n{\n\"label\": \"TimerDelay\",\n\"action\": \"thinktime\",\n\"settings\": {\n\"type\": \"static\",\n\"delay\": 5\n }\n}\n```\n",
165
165
},
166
166
"unpublishsheet": {
167
167
Description: "## UnpublishSheet action\n\nUnpublish sheets in the current app.\n",
@@ -318,7 +318,7 @@ var (
318
318
"staticselect.type": { "Selection type","`hypercubecells`: Select in hypercube.","`listobjectvalues`: Select in listbox." },
319
319
"staticselect.wrap": { "Wrap selection with Begin / End selection requests (`true` / `false`)." },
320
320
"thinktime.delay": { "Delay (seconds), used with type `static`." },
321
-
"thinktime.dev": { "Deviation (seconds), used with type `uniform`." },
321
+
"thinktime.dev": { "Deviation (seconds) from `mean` value, used with type `uniform`." },
322
322
"thinktime.mean": { "Mean (seconds), used with type `uniform`." },
323
323
"thinktime.type": { "Type of think time","`static`: Static think time, defined by `delay`.","`uniform`: Random think time with uniform distribution, defined by `mean` and `dev`." },
324
324
"unpublishsheet.mode": { "","`allsheets`: Unpublish all sheets in the app.","`sheetids`: Only unpublish the sheets specified by the `sheetIds` array." },
0 commit comments