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
-`selectors` — required, string with query selectors delimited by comma. The scriptlet supports `>>>` combinator to select elements inside open shadow DOM. For usage, see example below.
@@ -47,14 +47,18 @@ and each of them should match the syntax. Possible `names`:
47
47
- `cookie` — test string or regex against cookies on a page
48
48
- `localStorage` — check if localStorage item is present
49
49
- `containsText` — check if clicked element contains specified text
50
-
-`delay` — optional, time in ms to delay scriptlet execution, defaults to instant execution.
51
-
Must be a number less than 10000 ms (10s)
50
+
-`delay` — optional, time in **ms** to delay scriptlet execution, defaults to instant execution.
51
+
Must be a number less than `observerTimeout` (default 10 _seconds_)
52
+
which can be configured.
52
53
-`reload` — optional, string with reloadAfterClick marker and optional value. Possible values:
53
54
-`reloadAfterClick` - reloads the page after all elements have been clicked,
54
55
with default delay — 500ms
55
56
- colon-separated pair `reloadAfterClick:value` where
56
57
-`value` — time delay in milliseconds before reloading the page, after all elements
57
-
have been clicked. Must be a number less than 10000 ms (10s)
58
+
have been clicked. Must be a number less than `observerTimeout`.
59
+
-`observerTimeout` — optional, time in **seconds** to use
60
+
instead default 10 seconds observer timeout.
61
+
Must be an integer number and more than 0.
58
62
59
63
<!-- markdownlint-disable line-length -->
60
64
@@ -134,6 +138,12 @@ and each of them should match the syntax. Possible `names`:
0 commit comments