doc-detective 4.26.1 → 4.26.3
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/bin/runner-entrypoint.js +17 -2
- package/dist/common/src/schemas/schemas.json +70 -70
- package/dist/common/src/types/generated/goTo_v3.d.ts +2 -2
- package/dist/common/src/types/generated/step_v3.d.ts +2 -2
- package/dist/common/src/types/generated/test_v3.d.ts +4 -4
- package/dist/index.cjs +70 -70
- package/package.json +1 -1
|
@@ -60,11 +60,11 @@ export type GoToURLDetailed = {
|
|
|
60
60
|
*/
|
|
61
61
|
waitUntil?: {
|
|
62
62
|
/**
|
|
63
|
-
* Wait for network activity to be idle (no new requests) for this duration in milliseconds. Set to `
|
|
63
|
+
* Wait for network activity to be idle (no new requests) for this duration in milliseconds. This check always runs; you can't skip it. Set it to `0` to treat the page as network-idle as soon as the first check completes (default: 500).
|
|
64
64
|
*/
|
|
65
65
|
networkIdleTime?: number | null;
|
|
66
66
|
/**
|
|
67
|
-
* Wait for DOM mutations to stop for this duration in milliseconds. Set to `
|
|
67
|
+
* Wait for DOM mutations to stop for this duration in milliseconds. This check always runs; you can't skip it. Set it to `0` to treat the DOM as stable as soon as the first check completes (default: 1000).
|
|
68
68
|
*/
|
|
69
69
|
domIdleTime?: number | null;
|
|
70
70
|
/**
|
|
@@ -224,11 +224,11 @@ export type GoToURLDetailed = {
|
|
|
224
224
|
*/
|
|
225
225
|
waitUntil?: {
|
|
226
226
|
/**
|
|
227
|
-
* Wait for network activity to be idle (no new requests) for this duration in milliseconds. Set to `
|
|
227
|
+
* Wait for network activity to be idle (no new requests) for this duration in milliseconds. This check always runs; you can't skip it. Set it to `0` to treat the page as network-idle as soon as the first check completes (default: 500).
|
|
228
228
|
*/
|
|
229
229
|
networkIdleTime?: number | null;
|
|
230
230
|
/**
|
|
231
|
-
* Wait for DOM mutations to stop for this duration in milliseconds. Set to `
|
|
231
|
+
* Wait for DOM mutations to stop for this duration in milliseconds. This check always runs; you can't skip it. Set it to `0` to treat the DOM as stable as soon as the first check completes (default: 1000).
|
|
232
232
|
*/
|
|
233
233
|
domIdleTime?: number | null;
|
|
234
234
|
/**
|
|
@@ -479,11 +479,11 @@ export type GoToURLDetailed = {
|
|
|
479
479
|
*/
|
|
480
480
|
waitUntil?: {
|
|
481
481
|
/**
|
|
482
|
-
* Wait for network activity to be idle (no new requests) for this duration in milliseconds. Set to `
|
|
482
|
+
* Wait for network activity to be idle (no new requests) for this duration in milliseconds. This check always runs; you can't skip it. Set it to `0` to treat the page as network-idle as soon as the first check completes (default: 500).
|
|
483
483
|
*/
|
|
484
484
|
networkIdleTime?: number | null;
|
|
485
485
|
/**
|
|
486
|
-
* Wait for DOM mutations to stop for this duration in milliseconds. Set to `
|
|
486
|
+
* Wait for DOM mutations to stop for this duration in milliseconds. This check always runs; you can't skip it. Set it to `0` to treat the DOM as stable as soon as the first check completes (default: 1000).
|
|
487
487
|
*/
|
|
488
488
|
domIdleTime?: number | null;
|
|
489
489
|
/**
|
|
@@ -2630,11 +2630,11 @@ export type GoToURLDetailed1 = {
|
|
|
2630
2630
|
*/
|
|
2631
2631
|
waitUntil?: {
|
|
2632
2632
|
/**
|
|
2633
|
-
* Wait for network activity to be idle (no new requests) for this duration in milliseconds. Set to `
|
|
2633
|
+
* Wait for network activity to be idle (no new requests) for this duration in milliseconds. This check always runs; you can't skip it. Set it to `0` to treat the page as network-idle as soon as the first check completes (default: 500).
|
|
2634
2634
|
*/
|
|
2635
2635
|
networkIdleTime?: number | null;
|
|
2636
2636
|
/**
|
|
2637
|
-
* Wait for DOM mutations to stop for this duration in milliseconds. Set to `
|
|
2637
|
+
* Wait for DOM mutations to stop for this duration in milliseconds. This check always runs; you can't skip it. Set it to `0` to treat the DOM as stable as soon as the first check completes (default: 1000).
|
|
2638
2638
|
*/
|
|
2639
2639
|
domIdleTime?: number | null;
|
|
2640
2640
|
/**
|