doc-detective-common 4.36.0 → 4.37.1
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/dist/index.cjs +6365 -56
- package/dist/schemas/schemas.json +6365 -56
- package/dist/types/generated/annotate_v3.d.ts +48 -0
- package/dist/types/generated/annotate_v3.d.ts.map +1 -1
- package/dist/types/generated/annotation_v3.d.ts +24 -0
- package/dist/types/generated/annotation_v3.d.ts.map +1 -1
- package/dist/types/generated/config_v3.d.ts +12 -0
- package/dist/types/generated/config_v3.d.ts.map +1 -1
- package/dist/types/generated/context_v3.d.ts +4 -0
- package/dist/types/generated/context_v3.d.ts.map +1 -1
- package/dist/types/generated/report_v3.d.ts +12 -0
- package/dist/types/generated/report_v3.d.ts.map +1 -1
- package/dist/types/generated/resolvedTests_v3.d.ts +20 -0
- package/dist/types/generated/resolvedTests_v3.d.ts.map +1 -1
- package/dist/types/generated/screenshot_v3.d.ts +24 -0
- package/dist/types/generated/screenshot_v3.d.ts.map +1 -1
- package/dist/types/generated/spec_v3.d.ts +8 -0
- package/dist/types/generated/spec_v3.d.ts.map +1 -1
- package/dist/types/generated/step_v3.d.ts +156 -0
- package/dist/types/generated/step_v3.d.ts.map +1 -1
- package/dist/types/generated/test_v3.d.ts +324 -0
- package/dist/types/generated/test_v3.d.ts.map +1 -1
- package/package.json +1 -1
|
@@ -69,6 +69,10 @@ export type Test = {
|
|
|
69
69
|
* @minItems 1
|
|
70
70
|
*/
|
|
71
71
|
steps?: [Step, ...Step[]];
|
|
72
|
+
/**
|
|
73
|
+
* Total time this test took, in milliseconds: the sum of the per-context durations. A sum rather than a wall-clock span, because this test's contexts share a concurrent pool with every other test's. Present only in test results. System-populated.
|
|
74
|
+
*/
|
|
75
|
+
durationMs?: number;
|
|
72
76
|
contexts?: ResolvedContexts;
|
|
73
77
|
};
|
|
74
78
|
export type DeviceByName = string;
|
|
@@ -6059,6 +6063,10 @@ export interface Context {
|
|
|
6059
6063
|
* Per-context override for the config-level [`browserFallback`](config) policy that governs whether a context whose browser can't start a driver session falls back to another available browser. Accepts the same values — `auto`, `explicit`, `off` — and, when set, takes precedence over the config-level value for the contexts this entry expands into. Omit it to inherit the config-level policy (which itself defaults to `auto`).
|
|
6060
6064
|
*/
|
|
6061
6065
|
browserFallback?: "auto" | "explicit" | "off";
|
|
6066
|
+
/**
|
|
6067
|
+
* Per-context override for the config-level [`retries`](config) policy — how many times to re-run this context on a fresh session when its session turns out to be unusable mid-run. When set, takes precedence over the config-level value for the contexts this entry expands into. Omit it to inherit the config-level policy (which defaults to `1`). Set to `0` to disable retries for this context.
|
|
6068
|
+
*/
|
|
6069
|
+
retries?: number;
|
|
6062
6070
|
/**
|
|
6063
6071
|
* Capabilities the environment must provide for this context to run. A string names a required command; an array names several; the object form checks commands (on PATH), files (paths, with `$VAR`/`$HOME` expansion), and environment variables. All entries are AND-ed. Any unmet requirement marks the context as SKIPPED — the same non-failing outcome as a `platforms` mismatch.
|
|
6064
6072
|
*/
|
|
@@ -6274,6 +6282,10 @@ export interface Common {
|
|
|
6274
6282
|
* Which visit of this step produced this report, when a routing goToStep re-ran it (the first visit omits this field). Present only in test results; system-populated.
|
|
6275
6283
|
*/
|
|
6276
6284
|
visit?: number;
|
|
6285
|
+
/**
|
|
6286
|
+
* Wall-clock duration of this step in milliseconds. When a routing `retry` action re-ran the step, this is the FINAL attempt's elapsed time — the attempt the reported `result` describes — not the sum across attempts. A step that was skipped or never executed reports `0`. Distinct from the `duration` input that some actions accept (for example a `click`'s press duration). Present only in test results; system-populated.
|
|
6287
|
+
*/
|
|
6288
|
+
durationMs?: number;
|
|
6277
6289
|
[k: string]: unknown;
|
|
6278
6290
|
}
|
|
6279
6291
|
/**
|
|
@@ -6444,6 +6456,10 @@ export interface Common1 {
|
|
|
6444
6456
|
* Which visit of this step produced this report, when a routing goToStep re-ran it (the first visit omits this field). Present only in test results; system-populated.
|
|
6445
6457
|
*/
|
|
6446
6458
|
visit?: number;
|
|
6459
|
+
/**
|
|
6460
|
+
* Wall-clock duration of this step in milliseconds. When a routing `retry` action re-ran the step, this is the FINAL attempt's elapsed time — the attempt the reported `result` describes — not the sum across attempts. A step that was skipped or never executed reports `0`. Distinct from the `duration` input that some actions accept (for example a `click`'s press duration). Present only in test results; system-populated.
|
|
6461
|
+
*/
|
|
6462
|
+
durationMs?: number;
|
|
6447
6463
|
[k: string]: unknown;
|
|
6448
6464
|
}
|
|
6449
6465
|
/**
|
|
@@ -6581,6 +6597,10 @@ export interface Common2 {
|
|
|
6581
6597
|
* Which visit of this step produced this report, when a routing goToStep re-ran it (the first visit omits this field). Present only in test results; system-populated.
|
|
6582
6598
|
*/
|
|
6583
6599
|
visit?: number;
|
|
6600
|
+
/**
|
|
6601
|
+
* Wall-clock duration of this step in milliseconds. When a routing `retry` action re-ran the step, this is the FINAL attempt's elapsed time — the attempt the reported `result` describes — not the sum across attempts. A step that was skipped or never executed reports `0`. Distinct from the `duration` input that some actions accept (for example a `click`'s press duration). Present only in test results; system-populated.
|
|
6602
|
+
*/
|
|
6603
|
+
durationMs?: number;
|
|
6584
6604
|
[k: string]: unknown;
|
|
6585
6605
|
}
|
|
6586
6606
|
/**
|
|
@@ -6718,6 +6738,10 @@ export interface Common3 {
|
|
|
6718
6738
|
* Which visit of this step produced this report, when a routing goToStep re-ran it (the first visit omits this field). Present only in test results; system-populated.
|
|
6719
6739
|
*/
|
|
6720
6740
|
visit?: number;
|
|
6741
|
+
/**
|
|
6742
|
+
* Wall-clock duration of this step in milliseconds. When a routing `retry` action re-ran the step, this is the FINAL attempt's elapsed time — the attempt the reported `result` describes — not the sum across attempts. A step that was skipped or never executed reports `0`. Distinct from the `duration` input that some actions accept (for example a `click`'s press duration). Present only in test results; system-populated.
|
|
6743
|
+
*/
|
|
6744
|
+
durationMs?: number;
|
|
6721
6745
|
[k: string]: unknown;
|
|
6722
6746
|
}
|
|
6723
6747
|
/**
|
|
@@ -6912,6 +6936,10 @@ export interface Common4 {
|
|
|
6912
6936
|
* Which visit of this step produced this report, when a routing goToStep re-ran it (the first visit omits this field). Present only in test results; system-populated.
|
|
6913
6937
|
*/
|
|
6914
6938
|
visit?: number;
|
|
6939
|
+
/**
|
|
6940
|
+
* Wall-clock duration of this step in milliseconds. When a routing `retry` action re-ran the step, this is the FINAL attempt's elapsed time — the attempt the reported `result` describes — not the sum across attempts. A step that was skipped or never executed reports `0`. Distinct from the `duration` input that some actions accept (for example a `click`'s press duration). Present only in test results; system-populated.
|
|
6941
|
+
*/
|
|
6942
|
+
durationMs?: number;
|
|
6915
6943
|
[k: string]: unknown;
|
|
6916
6944
|
}
|
|
6917
6945
|
/**
|
|
@@ -7049,6 +7077,10 @@ export interface Common5 {
|
|
|
7049
7077
|
* Which visit of this step produced this report, when a routing goToStep re-ran it (the first visit omits this field). Present only in test results; system-populated.
|
|
7050
7078
|
*/
|
|
7051
7079
|
visit?: number;
|
|
7080
|
+
/**
|
|
7081
|
+
* Wall-clock duration of this step in milliseconds. When a routing `retry` action re-ran the step, this is the FINAL attempt's elapsed time — the attempt the reported `result` describes — not the sum across attempts. A step that was skipped or never executed reports `0`. Distinct from the `duration` input that some actions accept (for example a `click`'s press duration). Present only in test results; system-populated.
|
|
7082
|
+
*/
|
|
7083
|
+
durationMs?: number;
|
|
7052
7084
|
[k: string]: unknown;
|
|
7053
7085
|
}
|
|
7054
7086
|
/**
|
|
@@ -7267,6 +7299,10 @@ export interface Common6 {
|
|
|
7267
7299
|
* Which visit of this step produced this report, when a routing goToStep re-ran it (the first visit omits this field). Present only in test results; system-populated.
|
|
7268
7300
|
*/
|
|
7269
7301
|
visit?: number;
|
|
7302
|
+
/**
|
|
7303
|
+
* Wall-clock duration of this step in milliseconds. When a routing `retry` action re-ran the step, this is the FINAL attempt's elapsed time — the attempt the reported `result` describes — not the sum across attempts. A step that was skipped or never executed reports `0`. Distinct from the `duration` input that some actions accept (for example a `click`'s press duration). Present only in test results; system-populated.
|
|
7304
|
+
*/
|
|
7305
|
+
durationMs?: number;
|
|
7270
7306
|
[k: string]: unknown;
|
|
7271
7307
|
}
|
|
7272
7308
|
/**
|
|
@@ -7486,6 +7522,10 @@ export interface Common7 {
|
|
|
7486
7522
|
* Which visit of this step produced this report, when a routing goToStep re-ran it (the first visit omits this field). Present only in test results; system-populated.
|
|
7487
7523
|
*/
|
|
7488
7524
|
visit?: number;
|
|
7525
|
+
/**
|
|
7526
|
+
* Wall-clock duration of this step in milliseconds. When a routing `retry` action re-ran the step, this is the FINAL attempt's elapsed time — the attempt the reported `result` describes — not the sum across attempts. A step that was skipped or never executed reports `0`. Distinct from the `duration` input that some actions accept (for example a `click`'s press duration). Present only in test results; system-populated.
|
|
7527
|
+
*/
|
|
7528
|
+
durationMs?: number;
|
|
7489
7529
|
[k: string]: unknown;
|
|
7490
7530
|
}
|
|
7491
7531
|
/**
|
|
@@ -7710,6 +7750,10 @@ export interface Common8 {
|
|
|
7710
7750
|
* Which visit of this step produced this report, when a routing goToStep re-ran it (the first visit omits this field). Present only in test results; system-populated.
|
|
7711
7751
|
*/
|
|
7712
7752
|
visit?: number;
|
|
7753
|
+
/**
|
|
7754
|
+
* Wall-clock duration of this step in milliseconds. When a routing `retry` action re-ran the step, this is the FINAL attempt's elapsed time — the attempt the reported `result` describes — not the sum across attempts. A step that was skipped or never executed reports `0`. Distinct from the `duration` input that some actions accept (for example a `click`'s press duration). Present only in test results; system-populated.
|
|
7755
|
+
*/
|
|
7756
|
+
durationMs?: number;
|
|
7713
7757
|
[k: string]: unknown;
|
|
7714
7758
|
}
|
|
7715
7759
|
/**
|
|
@@ -7968,6 +8012,10 @@ export interface Common9 {
|
|
|
7968
8012
|
* Which visit of this step produced this report, when a routing goToStep re-ran it (the first visit omits this field). Present only in test results; system-populated.
|
|
7969
8013
|
*/
|
|
7970
8014
|
visit?: number;
|
|
8015
|
+
/**
|
|
8016
|
+
* Wall-clock duration of this step in milliseconds. When a routing `retry` action re-ran the step, this is the FINAL attempt's elapsed time — the attempt the reported `result` describes — not the sum across attempts. A step that was skipped or never executed reports `0`. Distinct from the `duration` input that some actions accept (for example a `click`'s press duration). Present only in test results; system-populated.
|
|
8017
|
+
*/
|
|
8018
|
+
durationMs?: number;
|
|
7971
8019
|
[k: string]: unknown;
|
|
7972
8020
|
}
|
|
7973
8021
|
/**
|
|
@@ -8226,6 +8274,10 @@ export interface ElementFindingFields {
|
|
|
8226
8274
|
* Computed accessible name of the element per ARIA specification. Supports exact match or regex pattern using /pattern/ syntax.
|
|
8227
8275
|
*/
|
|
8228
8276
|
elementAria?: string;
|
|
8277
|
+
/**
|
|
8278
|
+
* Max duration in milliseconds to wait for the element to exist.
|
|
8279
|
+
*/
|
|
8280
|
+
timeout?: number;
|
|
8229
8281
|
}
|
|
8230
8282
|
/**
|
|
8231
8283
|
* A fixed spot in the capture, for annotations that aren't anchored to an element.
|
|
@@ -8277,6 +8329,10 @@ export interface ElementFindingFields1 {
|
|
|
8277
8329
|
* Computed accessible name of the element per ARIA specification. Supports exact match or regex pattern using /pattern/ syntax.
|
|
8278
8330
|
*/
|
|
8279
8331
|
elementAria?: string;
|
|
8332
|
+
/**
|
|
8333
|
+
* Max duration in milliseconds to wait for the element to exist.
|
|
8334
|
+
*/
|
|
8335
|
+
timeout?: number;
|
|
8280
8336
|
}
|
|
8281
8337
|
/**
|
|
8282
8338
|
* A fixed spot in the capture, for annotations that aren't anchored to an element.
|
|
@@ -8328,6 +8384,10 @@ export interface ElementFindingFields2 {
|
|
|
8328
8384
|
* Computed accessible name of the element per ARIA specification. Supports exact match or regex pattern using /pattern/ syntax.
|
|
8329
8385
|
*/
|
|
8330
8386
|
elementAria?: string;
|
|
8387
|
+
/**
|
|
8388
|
+
* Max duration in milliseconds to wait for the element to exist.
|
|
8389
|
+
*/
|
|
8390
|
+
timeout?: number;
|
|
8331
8391
|
}
|
|
8332
8392
|
/**
|
|
8333
8393
|
* A fixed spot in the capture, for annotations that aren't anchored to an element.
|
|
@@ -8379,6 +8439,10 @@ export interface ElementFindingFields3 {
|
|
|
8379
8439
|
* Computed accessible name of the element per ARIA specification. Supports exact match or regex pattern using /pattern/ syntax.
|
|
8380
8440
|
*/
|
|
8381
8441
|
elementAria?: string;
|
|
8442
|
+
/**
|
|
8443
|
+
* Max duration in milliseconds to wait for the element to exist.
|
|
8444
|
+
*/
|
|
8445
|
+
timeout?: number;
|
|
8382
8446
|
}
|
|
8383
8447
|
/**
|
|
8384
8448
|
* A fixed spot in the capture, for annotations that aren't anchored to an element.
|
|
@@ -8430,6 +8494,10 @@ export interface ElementFindingFields4 {
|
|
|
8430
8494
|
* Computed accessible name of the element per ARIA specification. Supports exact match or regex pattern using /pattern/ syntax.
|
|
8431
8495
|
*/
|
|
8432
8496
|
elementAria?: string;
|
|
8497
|
+
/**
|
|
8498
|
+
* Max duration in milliseconds to wait for the element to exist.
|
|
8499
|
+
*/
|
|
8500
|
+
timeout?: number;
|
|
8433
8501
|
}
|
|
8434
8502
|
/**
|
|
8435
8503
|
* A fixed spot in the capture, for annotations that aren't anchored to an element.
|
|
@@ -8481,6 +8549,10 @@ export interface ElementFindingFields5 {
|
|
|
8481
8549
|
* Computed accessible name of the element per ARIA specification. Supports exact match or regex pattern using /pattern/ syntax.
|
|
8482
8550
|
*/
|
|
8483
8551
|
elementAria?: string;
|
|
8552
|
+
/**
|
|
8553
|
+
* Max duration in milliseconds to wait for the element to exist.
|
|
8554
|
+
*/
|
|
8555
|
+
timeout?: number;
|
|
8484
8556
|
}
|
|
8485
8557
|
/**
|
|
8486
8558
|
* A fixed spot in the capture, for annotations that aren't anchored to an element.
|
|
@@ -8679,6 +8751,10 @@ export interface Common10 {
|
|
|
8679
8751
|
* Which visit of this step produced this report, when a routing goToStep re-ran it (the first visit omits this field). Present only in test results; system-populated.
|
|
8680
8752
|
*/
|
|
8681
8753
|
visit?: number;
|
|
8754
|
+
/**
|
|
8755
|
+
* Wall-clock duration of this step in milliseconds. When a routing `retry` action re-ran the step, this is the FINAL attempt's elapsed time — the attempt the reported `result` describes — not the sum across attempts. A step that was skipped or never executed reports `0`. Distinct from the `duration` input that some actions accept (for example a `click`'s press duration). Present only in test results; system-populated.
|
|
8756
|
+
*/
|
|
8757
|
+
durationMs?: number;
|
|
8682
8758
|
[k: string]: unknown;
|
|
8683
8759
|
}
|
|
8684
8760
|
/**
|
|
@@ -8816,6 +8892,10 @@ export interface Common11 {
|
|
|
8816
8892
|
* Which visit of this step produced this report, when a routing goToStep re-ran it (the first visit omits this field). Present only in test results; system-populated.
|
|
8817
8893
|
*/
|
|
8818
8894
|
visit?: number;
|
|
8895
|
+
/**
|
|
8896
|
+
* Wall-clock duration of this step in milliseconds. When a routing `retry` action re-ran the step, this is the FINAL attempt's elapsed time — the attempt the reported `result` describes — not the sum across attempts. A step that was skipped or never executed reports `0`. Distinct from the `duration` input that some actions accept (for example a `click`'s press duration). Present only in test results; system-populated.
|
|
8897
|
+
*/
|
|
8898
|
+
durationMs?: number;
|
|
8819
8899
|
[k: string]: unknown;
|
|
8820
8900
|
}
|
|
8821
8901
|
/**
|
|
@@ -9097,6 +9177,10 @@ export interface Common12 {
|
|
|
9097
9177
|
* Which visit of this step produced this report, when a routing goToStep re-ran it (the first visit omits this field). Present only in test results; system-populated.
|
|
9098
9178
|
*/
|
|
9099
9179
|
visit?: number;
|
|
9180
|
+
/**
|
|
9181
|
+
* Wall-clock duration of this step in milliseconds. When a routing `retry` action re-ran the step, this is the FINAL attempt's elapsed time — the attempt the reported `result` describes — not the sum across attempts. A step that was skipped or never executed reports `0`. Distinct from the `duration` input that some actions accept (for example a `click`'s press duration). Present only in test results; system-populated.
|
|
9182
|
+
*/
|
|
9183
|
+
durationMs?: number;
|
|
9100
9184
|
[k: string]: unknown;
|
|
9101
9185
|
}
|
|
9102
9186
|
/**
|
|
@@ -9240,6 +9324,10 @@ export interface Common13 {
|
|
|
9240
9324
|
* Which visit of this step produced this report, when a routing goToStep re-ran it (the first visit omits this field). Present only in test results; system-populated.
|
|
9241
9325
|
*/
|
|
9242
9326
|
visit?: number;
|
|
9327
|
+
/**
|
|
9328
|
+
* Wall-clock duration of this step in milliseconds. When a routing `retry` action re-ran the step, this is the FINAL attempt's elapsed time — the attempt the reported `result` describes — not the sum across attempts. A step that was skipped or never executed reports `0`. Distinct from the `duration` input that some actions accept (for example a `click`'s press duration). Present only in test results; system-populated.
|
|
9329
|
+
*/
|
|
9330
|
+
durationMs?: number;
|
|
9243
9331
|
[k: string]: unknown;
|
|
9244
9332
|
}
|
|
9245
9333
|
/**
|
|
@@ -9527,6 +9615,10 @@ export interface Common14 {
|
|
|
9527
9615
|
* Which visit of this step produced this report, when a routing goToStep re-ran it (the first visit omits this field). Present only in test results; system-populated.
|
|
9528
9616
|
*/
|
|
9529
9617
|
visit?: number;
|
|
9618
|
+
/**
|
|
9619
|
+
* Wall-clock duration of this step in milliseconds. When a routing `retry` action re-ran the step, this is the FINAL attempt's elapsed time — the attempt the reported `result` describes — not the sum across attempts. A step that was skipped or never executed reports `0`. Distinct from the `duration` input that some actions accept (for example a `click`'s press duration). Present only in test results; system-populated.
|
|
9620
|
+
*/
|
|
9621
|
+
durationMs?: number;
|
|
9530
9622
|
[k: string]: unknown;
|
|
9531
9623
|
}
|
|
9532
9624
|
/**
|
|
@@ -10044,6 +10136,10 @@ export interface Common15 {
|
|
|
10044
10136
|
* Which visit of this step produced this report, when a routing goToStep re-ran it (the first visit omits this field). Present only in test results; system-populated.
|
|
10045
10137
|
*/
|
|
10046
10138
|
visit?: number;
|
|
10139
|
+
/**
|
|
10140
|
+
* Wall-clock duration of this step in milliseconds. When a routing `retry` action re-ran the step, this is the FINAL attempt's elapsed time — the attempt the reported `result` describes — not the sum across attempts. A step that was skipped or never executed reports `0`. Distinct from the `duration` input that some actions accept (for example a `click`'s press duration). Present only in test results; system-populated.
|
|
10141
|
+
*/
|
|
10142
|
+
durationMs?: number;
|
|
10047
10143
|
[k: string]: unknown;
|
|
10048
10144
|
}
|
|
10049
10145
|
/**
|
|
@@ -10181,6 +10277,10 @@ export interface Common16 {
|
|
|
10181
10277
|
* Which visit of this step produced this report, when a routing goToStep re-ran it (the first visit omits this field). Present only in test results; system-populated.
|
|
10182
10278
|
*/
|
|
10183
10279
|
visit?: number;
|
|
10280
|
+
/**
|
|
10281
|
+
* Wall-clock duration of this step in milliseconds. When a routing `retry` action re-ran the step, this is the FINAL attempt's elapsed time — the attempt the reported `result` describes — not the sum across attempts. A step that was skipped or never executed reports `0`. Distinct from the `duration` input that some actions accept (for example a `click`'s press duration). Present only in test results; system-populated.
|
|
10282
|
+
*/
|
|
10283
|
+
durationMs?: number;
|
|
10184
10284
|
[k: string]: unknown;
|
|
10185
10285
|
}
|
|
10186
10286
|
/**
|
|
@@ -10388,6 +10488,10 @@ export interface Common17 {
|
|
|
10388
10488
|
* Which visit of this step produced this report, when a routing goToStep re-ran it (the first visit omits this field). Present only in test results; system-populated.
|
|
10389
10489
|
*/
|
|
10390
10490
|
visit?: number;
|
|
10491
|
+
/**
|
|
10492
|
+
* Wall-clock duration of this step in milliseconds. When a routing `retry` action re-ran the step, this is the FINAL attempt's elapsed time — the attempt the reported `result` describes — not the sum across attempts. A step that was skipped or never executed reports `0`. Distinct from the `duration` input that some actions accept (for example a `click`'s press duration). Present only in test results; system-populated.
|
|
10493
|
+
*/
|
|
10494
|
+
durationMs?: number;
|
|
10391
10495
|
[k: string]: unknown;
|
|
10392
10496
|
}
|
|
10393
10497
|
/**
|
|
@@ -10525,6 +10629,10 @@ export interface Common18 {
|
|
|
10525
10629
|
* Which visit of this step produced this report, when a routing goToStep re-ran it (the first visit omits this field). Present only in test results; system-populated.
|
|
10526
10630
|
*/
|
|
10527
10631
|
visit?: number;
|
|
10632
|
+
/**
|
|
10633
|
+
* Wall-clock duration of this step in milliseconds. When a routing `retry` action re-ran the step, this is the FINAL attempt's elapsed time — the attempt the reported `result` describes — not the sum across attempts. A step that was skipped or never executed reports `0`. Distinct from the `duration` input that some actions accept (for example a `click`'s press duration). Present only in test results; system-populated.
|
|
10634
|
+
*/
|
|
10635
|
+
durationMs?: number;
|
|
10528
10636
|
[k: string]: unknown;
|
|
10529
10637
|
}
|
|
10530
10638
|
/**
|
|
@@ -10853,6 +10961,10 @@ export interface Common19 {
|
|
|
10853
10961
|
* Which visit of this step produced this report, when a routing goToStep re-ran it (the first visit omits this field). Present only in test results; system-populated.
|
|
10854
10962
|
*/
|
|
10855
10963
|
visit?: number;
|
|
10964
|
+
/**
|
|
10965
|
+
* Wall-clock duration of this step in milliseconds. When a routing `retry` action re-ran the step, this is the FINAL attempt's elapsed time — the attempt the reported `result` describes — not the sum across attempts. A step that was skipped or never executed reports `0`. Distinct from the `duration` input that some actions accept (for example a `click`'s press duration). Present only in test results; system-populated.
|
|
10966
|
+
*/
|
|
10967
|
+
durationMs?: number;
|
|
10856
10968
|
[k: string]: unknown;
|
|
10857
10969
|
}
|
|
10858
10970
|
/**
|
|
@@ -10990,6 +11102,10 @@ export interface Common20 {
|
|
|
10990
11102
|
* Which visit of this step produced this report, when a routing goToStep re-ran it (the first visit omits this field). Present only in test results; system-populated.
|
|
10991
11103
|
*/
|
|
10992
11104
|
visit?: number;
|
|
11105
|
+
/**
|
|
11106
|
+
* Wall-clock duration of this step in milliseconds. When a routing `retry` action re-ran the step, this is the FINAL attempt's elapsed time — the attempt the reported `result` describes — not the sum across attempts. A step that was skipped or never executed reports `0`. Distinct from the `duration` input that some actions accept (for example a `click`'s press duration). Present only in test results; system-populated.
|
|
11107
|
+
*/
|
|
11108
|
+
durationMs?: number;
|
|
10993
11109
|
[k: string]: unknown;
|
|
10994
11110
|
}
|
|
10995
11111
|
/**
|
|
@@ -11167,6 +11283,10 @@ export interface ElementFindingFields6 {
|
|
|
11167
11283
|
* Computed accessible name of the element per ARIA specification. Supports exact match or regex pattern using /pattern/ syntax.
|
|
11168
11284
|
*/
|
|
11169
11285
|
elementAria?: string;
|
|
11286
|
+
/**
|
|
11287
|
+
* Max duration in milliseconds to wait for the element to exist.
|
|
11288
|
+
*/
|
|
11289
|
+
timeout?: number;
|
|
11170
11290
|
}
|
|
11171
11291
|
/**
|
|
11172
11292
|
* A fixed spot in the capture, for annotations that aren't anchored to an element.
|
|
@@ -11218,6 +11338,10 @@ export interface ElementFindingFields7 {
|
|
|
11218
11338
|
* Computed accessible name of the element per ARIA specification. Supports exact match or regex pattern using /pattern/ syntax.
|
|
11219
11339
|
*/
|
|
11220
11340
|
elementAria?: string;
|
|
11341
|
+
/**
|
|
11342
|
+
* Max duration in milliseconds to wait for the element to exist.
|
|
11343
|
+
*/
|
|
11344
|
+
timeout?: number;
|
|
11221
11345
|
}
|
|
11222
11346
|
/**
|
|
11223
11347
|
* A fixed spot in the capture, for annotations that aren't anchored to an element.
|
|
@@ -11269,6 +11393,10 @@ export interface ElementFindingFields8 {
|
|
|
11269
11393
|
* Computed accessible name of the element per ARIA specification. Supports exact match or regex pattern using /pattern/ syntax.
|
|
11270
11394
|
*/
|
|
11271
11395
|
elementAria?: string;
|
|
11396
|
+
/**
|
|
11397
|
+
* Max duration in milliseconds to wait for the element to exist.
|
|
11398
|
+
*/
|
|
11399
|
+
timeout?: number;
|
|
11272
11400
|
}
|
|
11273
11401
|
/**
|
|
11274
11402
|
* A fixed spot in the capture, for annotations that aren't anchored to an element.
|
|
@@ -11320,6 +11448,10 @@ export interface ElementFindingFields9 {
|
|
|
11320
11448
|
* Computed accessible name of the element per ARIA specification. Supports exact match or regex pattern using /pattern/ syntax.
|
|
11321
11449
|
*/
|
|
11322
11450
|
elementAria?: string;
|
|
11451
|
+
/**
|
|
11452
|
+
* Max duration in milliseconds to wait for the element to exist.
|
|
11453
|
+
*/
|
|
11454
|
+
timeout?: number;
|
|
11323
11455
|
}
|
|
11324
11456
|
/**
|
|
11325
11457
|
* A fixed spot in the capture, for annotations that aren't anchored to an element.
|
|
@@ -11371,6 +11503,10 @@ export interface ElementFindingFields10 {
|
|
|
11371
11503
|
* Computed accessible name of the element per ARIA specification. Supports exact match or regex pattern using /pattern/ syntax.
|
|
11372
11504
|
*/
|
|
11373
11505
|
elementAria?: string;
|
|
11506
|
+
/**
|
|
11507
|
+
* Max duration in milliseconds to wait for the element to exist.
|
|
11508
|
+
*/
|
|
11509
|
+
timeout?: number;
|
|
11374
11510
|
}
|
|
11375
11511
|
/**
|
|
11376
11512
|
* A fixed spot in the capture, for annotations that aren't anchored to an element.
|
|
@@ -11422,6 +11558,10 @@ export interface ElementFindingFields11 {
|
|
|
11422
11558
|
* Computed accessible name of the element per ARIA specification. Supports exact match or regex pattern using /pattern/ syntax.
|
|
11423
11559
|
*/
|
|
11424
11560
|
elementAria?: string;
|
|
11561
|
+
/**
|
|
11562
|
+
* Max duration in milliseconds to wait for the element to exist.
|
|
11563
|
+
*/
|
|
11564
|
+
timeout?: number;
|
|
11425
11565
|
}
|
|
11426
11566
|
/**
|
|
11427
11567
|
* A fixed spot in the capture, for annotations that aren't anchored to an element.
|
|
@@ -11618,6 +11758,10 @@ export interface ElementFindingFields12 {
|
|
|
11618
11758
|
* Computed accessible name of the element per ARIA specification. Supports exact match or regex pattern using /pattern/ syntax.
|
|
11619
11759
|
*/
|
|
11620
11760
|
elementAria?: string;
|
|
11761
|
+
/**
|
|
11762
|
+
* Max duration in milliseconds to wait for the element to exist.
|
|
11763
|
+
*/
|
|
11764
|
+
timeout?: number;
|
|
11621
11765
|
}
|
|
11622
11766
|
/**
|
|
11623
11767
|
* A fixed spot in the capture, for annotations that aren't anchored to an element.
|
|
@@ -11669,6 +11813,10 @@ export interface ElementFindingFields13 {
|
|
|
11669
11813
|
* Computed accessible name of the element per ARIA specification. Supports exact match or regex pattern using /pattern/ syntax.
|
|
11670
11814
|
*/
|
|
11671
11815
|
elementAria?: string;
|
|
11816
|
+
/**
|
|
11817
|
+
* Max duration in milliseconds to wait for the element to exist.
|
|
11818
|
+
*/
|
|
11819
|
+
timeout?: number;
|
|
11672
11820
|
}
|
|
11673
11821
|
/**
|
|
11674
11822
|
* A fixed spot in the capture, for annotations that aren't anchored to an element.
|
|
@@ -11720,6 +11868,10 @@ export interface ElementFindingFields14 {
|
|
|
11720
11868
|
* Computed accessible name of the element per ARIA specification. Supports exact match or regex pattern using /pattern/ syntax.
|
|
11721
11869
|
*/
|
|
11722
11870
|
elementAria?: string;
|
|
11871
|
+
/**
|
|
11872
|
+
* Max duration in milliseconds to wait for the element to exist.
|
|
11873
|
+
*/
|
|
11874
|
+
timeout?: number;
|
|
11723
11875
|
}
|
|
11724
11876
|
/**
|
|
11725
11877
|
* A fixed spot in the capture, for annotations that aren't anchored to an element.
|
|
@@ -11771,6 +11923,10 @@ export interface ElementFindingFields15 {
|
|
|
11771
11923
|
* Computed accessible name of the element per ARIA specification. Supports exact match or regex pattern using /pattern/ syntax.
|
|
11772
11924
|
*/
|
|
11773
11925
|
elementAria?: string;
|
|
11926
|
+
/**
|
|
11927
|
+
* Max duration in milliseconds to wait for the element to exist.
|
|
11928
|
+
*/
|
|
11929
|
+
timeout?: number;
|
|
11774
11930
|
}
|
|
11775
11931
|
/**
|
|
11776
11932
|
* A fixed spot in the capture, for annotations that aren't anchored to an element.
|
|
@@ -11822,6 +11978,10 @@ export interface ElementFindingFields16 {
|
|
|
11822
11978
|
* Computed accessible name of the element per ARIA specification. Supports exact match or regex pattern using /pattern/ syntax.
|
|
11823
11979
|
*/
|
|
11824
11980
|
elementAria?: string;
|
|
11981
|
+
/**
|
|
11982
|
+
* Max duration in milliseconds to wait for the element to exist.
|
|
11983
|
+
*/
|
|
11984
|
+
timeout?: number;
|
|
11825
11985
|
}
|
|
11826
11986
|
/**
|
|
11827
11987
|
* A fixed spot in the capture, for annotations that aren't anchored to an element.
|
|
@@ -11873,6 +12033,10 @@ export interface ElementFindingFields17 {
|
|
|
11873
12033
|
* Computed accessible name of the element per ARIA specification. Supports exact match or regex pattern using /pattern/ syntax.
|
|
11874
12034
|
*/
|
|
11875
12035
|
elementAria?: string;
|
|
12036
|
+
/**
|
|
12037
|
+
* Max duration in milliseconds to wait for the element to exist.
|
|
12038
|
+
*/
|
|
12039
|
+
timeout?: number;
|
|
11876
12040
|
}
|
|
11877
12041
|
/**
|
|
11878
12042
|
* A fixed spot in the capture, for annotations that aren't anchored to an element.
|
|
@@ -11990,6 +12154,10 @@ export interface IdIsRequiredForUpdates {
|
|
|
11990
12154
|
[k: string]: unknown;
|
|
11991
12155
|
}
|
|
11992
12156
|
export interface ResolvedContext {
|
|
12157
|
+
/**
|
|
12158
|
+
* Wall-clock duration of this context in milliseconds, covering preflight, driver startup, every step, and teardown. When the `retries` policy re-ran the context, this is the FINAL attempt's elapsed time — the attempt the reported `result` describes — not the sum across attempts. Present only in test results. System-populated.
|
|
12159
|
+
*/
|
|
12160
|
+
durationMs?: number;
|
|
11993
12161
|
/**
|
|
11994
12162
|
* Platform to run the test on. This is a resolved version of the `platforms` property.
|
|
11995
12163
|
*/
|
|
@@ -12109,6 +12277,10 @@ export interface Common21 {
|
|
|
12109
12277
|
* Which visit of this step produced this report, when a routing goToStep re-ran it (the first visit omits this field). Present only in test results; system-populated.
|
|
12110
12278
|
*/
|
|
12111
12279
|
visit?: number;
|
|
12280
|
+
/**
|
|
12281
|
+
* Wall-clock duration of this step in milliseconds. When a routing `retry` action re-ran the step, this is the FINAL attempt's elapsed time — the attempt the reported `result` describes — not the sum across attempts. A step that was skipped or never executed reports `0`. Distinct from the `duration` input that some actions accept (for example a `click`'s press duration). Present only in test results; system-populated.
|
|
12282
|
+
*/
|
|
12283
|
+
durationMs?: number;
|
|
12112
12284
|
[k: string]: unknown;
|
|
12113
12285
|
}
|
|
12114
12286
|
/**
|
|
@@ -12279,6 +12451,10 @@ export interface Common22 {
|
|
|
12279
12451
|
* Which visit of this step produced this report, when a routing goToStep re-ran it (the first visit omits this field). Present only in test results; system-populated.
|
|
12280
12452
|
*/
|
|
12281
12453
|
visit?: number;
|
|
12454
|
+
/**
|
|
12455
|
+
* Wall-clock duration of this step in milliseconds. When a routing `retry` action re-ran the step, this is the FINAL attempt's elapsed time — the attempt the reported `result` describes — not the sum across attempts. A step that was skipped or never executed reports `0`. Distinct from the `duration` input that some actions accept (for example a `click`'s press duration). Present only in test results; system-populated.
|
|
12456
|
+
*/
|
|
12457
|
+
durationMs?: number;
|
|
12282
12458
|
[k: string]: unknown;
|
|
12283
12459
|
}
|
|
12284
12460
|
/**
|
|
@@ -12416,6 +12592,10 @@ export interface Common23 {
|
|
|
12416
12592
|
* Which visit of this step produced this report, when a routing goToStep re-ran it (the first visit omits this field). Present only in test results; system-populated.
|
|
12417
12593
|
*/
|
|
12418
12594
|
visit?: number;
|
|
12595
|
+
/**
|
|
12596
|
+
* Wall-clock duration of this step in milliseconds. When a routing `retry` action re-ran the step, this is the FINAL attempt's elapsed time — the attempt the reported `result` describes — not the sum across attempts. A step that was skipped or never executed reports `0`. Distinct from the `duration` input that some actions accept (for example a `click`'s press duration). Present only in test results; system-populated.
|
|
12597
|
+
*/
|
|
12598
|
+
durationMs?: number;
|
|
12419
12599
|
[k: string]: unknown;
|
|
12420
12600
|
}
|
|
12421
12601
|
/**
|
|
@@ -12553,6 +12733,10 @@ export interface Common24 {
|
|
|
12553
12733
|
* Which visit of this step produced this report, when a routing goToStep re-ran it (the first visit omits this field). Present only in test results; system-populated.
|
|
12554
12734
|
*/
|
|
12555
12735
|
visit?: number;
|
|
12736
|
+
/**
|
|
12737
|
+
* Wall-clock duration of this step in milliseconds. When a routing `retry` action re-ran the step, this is the FINAL attempt's elapsed time — the attempt the reported `result` describes — not the sum across attempts. A step that was skipped or never executed reports `0`. Distinct from the `duration` input that some actions accept (for example a `click`'s press duration). Present only in test results; system-populated.
|
|
12738
|
+
*/
|
|
12739
|
+
durationMs?: number;
|
|
12556
12740
|
[k: string]: unknown;
|
|
12557
12741
|
}
|
|
12558
12742
|
/**
|
|
@@ -12747,6 +12931,10 @@ export interface Common25 {
|
|
|
12747
12931
|
* Which visit of this step produced this report, when a routing goToStep re-ran it (the first visit omits this field). Present only in test results; system-populated.
|
|
12748
12932
|
*/
|
|
12749
12933
|
visit?: number;
|
|
12934
|
+
/**
|
|
12935
|
+
* Wall-clock duration of this step in milliseconds. When a routing `retry` action re-ran the step, this is the FINAL attempt's elapsed time — the attempt the reported `result` describes — not the sum across attempts. A step that was skipped or never executed reports `0`. Distinct from the `duration` input that some actions accept (for example a `click`'s press duration). Present only in test results; system-populated.
|
|
12936
|
+
*/
|
|
12937
|
+
durationMs?: number;
|
|
12750
12938
|
[k: string]: unknown;
|
|
12751
12939
|
}
|
|
12752
12940
|
/**
|
|
@@ -12884,6 +13072,10 @@ export interface Common26 {
|
|
|
12884
13072
|
* Which visit of this step produced this report, when a routing goToStep re-ran it (the first visit omits this field). Present only in test results; system-populated.
|
|
12885
13073
|
*/
|
|
12886
13074
|
visit?: number;
|
|
13075
|
+
/**
|
|
13076
|
+
* Wall-clock duration of this step in milliseconds. When a routing `retry` action re-ran the step, this is the FINAL attempt's elapsed time — the attempt the reported `result` describes — not the sum across attempts. A step that was skipped or never executed reports `0`. Distinct from the `duration` input that some actions accept (for example a `click`'s press duration). Present only in test results; system-populated.
|
|
13077
|
+
*/
|
|
13078
|
+
durationMs?: number;
|
|
12887
13079
|
[k: string]: unknown;
|
|
12888
13080
|
}
|
|
12889
13081
|
/**
|
|
@@ -13102,6 +13294,10 @@ export interface Common27 {
|
|
|
13102
13294
|
* Which visit of this step produced this report, when a routing goToStep re-ran it (the first visit omits this field). Present only in test results; system-populated.
|
|
13103
13295
|
*/
|
|
13104
13296
|
visit?: number;
|
|
13297
|
+
/**
|
|
13298
|
+
* Wall-clock duration of this step in milliseconds. When a routing `retry` action re-ran the step, this is the FINAL attempt's elapsed time — the attempt the reported `result` describes — not the sum across attempts. A step that was skipped or never executed reports `0`. Distinct from the `duration` input that some actions accept (for example a `click`'s press duration). Present only in test results; system-populated.
|
|
13299
|
+
*/
|
|
13300
|
+
durationMs?: number;
|
|
13105
13301
|
[k: string]: unknown;
|
|
13106
13302
|
}
|
|
13107
13303
|
/**
|
|
@@ -13321,6 +13517,10 @@ export interface Common28 {
|
|
|
13321
13517
|
* Which visit of this step produced this report, when a routing goToStep re-ran it (the first visit omits this field). Present only in test results; system-populated.
|
|
13322
13518
|
*/
|
|
13323
13519
|
visit?: number;
|
|
13520
|
+
/**
|
|
13521
|
+
* Wall-clock duration of this step in milliseconds. When a routing `retry` action re-ran the step, this is the FINAL attempt's elapsed time — the attempt the reported `result` describes — not the sum across attempts. A step that was skipped or never executed reports `0`. Distinct from the `duration` input that some actions accept (for example a `click`'s press duration). Present only in test results; system-populated.
|
|
13522
|
+
*/
|
|
13523
|
+
durationMs?: number;
|
|
13324
13524
|
[k: string]: unknown;
|
|
13325
13525
|
}
|
|
13326
13526
|
/**
|
|
@@ -13545,6 +13745,10 @@ export interface Common29 {
|
|
|
13545
13745
|
* Which visit of this step produced this report, when a routing goToStep re-ran it (the first visit omits this field). Present only in test results; system-populated.
|
|
13546
13746
|
*/
|
|
13547
13747
|
visit?: number;
|
|
13748
|
+
/**
|
|
13749
|
+
* Wall-clock duration of this step in milliseconds. When a routing `retry` action re-ran the step, this is the FINAL attempt's elapsed time — the attempt the reported `result` describes — not the sum across attempts. A step that was skipped or never executed reports `0`. Distinct from the `duration` input that some actions accept (for example a `click`'s press duration). Present only in test results; system-populated.
|
|
13750
|
+
*/
|
|
13751
|
+
durationMs?: number;
|
|
13548
13752
|
[k: string]: unknown;
|
|
13549
13753
|
}
|
|
13550
13754
|
/**
|
|
@@ -13803,6 +14007,10 @@ export interface Common30 {
|
|
|
13803
14007
|
* Which visit of this step produced this report, when a routing goToStep re-ran it (the first visit omits this field). Present only in test results; system-populated.
|
|
13804
14008
|
*/
|
|
13805
14009
|
visit?: number;
|
|
14010
|
+
/**
|
|
14011
|
+
* Wall-clock duration of this step in milliseconds. When a routing `retry` action re-ran the step, this is the FINAL attempt's elapsed time — the attempt the reported `result` describes — not the sum across attempts. A step that was skipped or never executed reports `0`. Distinct from the `duration` input that some actions accept (for example a `click`'s press duration). Present only in test results; system-populated.
|
|
14012
|
+
*/
|
|
14013
|
+
durationMs?: number;
|
|
13806
14014
|
[k: string]: unknown;
|
|
13807
14015
|
}
|
|
13808
14016
|
/**
|
|
@@ -14061,6 +14269,10 @@ export interface ElementFindingFields18 {
|
|
|
14061
14269
|
* Computed accessible name of the element per ARIA specification. Supports exact match or regex pattern using /pattern/ syntax.
|
|
14062
14270
|
*/
|
|
14063
14271
|
elementAria?: string;
|
|
14272
|
+
/**
|
|
14273
|
+
* Max duration in milliseconds to wait for the element to exist.
|
|
14274
|
+
*/
|
|
14275
|
+
timeout?: number;
|
|
14064
14276
|
}
|
|
14065
14277
|
/**
|
|
14066
14278
|
* A fixed spot in the capture, for annotations that aren't anchored to an element.
|
|
@@ -14112,6 +14324,10 @@ export interface ElementFindingFields19 {
|
|
|
14112
14324
|
* Computed accessible name of the element per ARIA specification. Supports exact match or regex pattern using /pattern/ syntax.
|
|
14113
14325
|
*/
|
|
14114
14326
|
elementAria?: string;
|
|
14327
|
+
/**
|
|
14328
|
+
* Max duration in milliseconds to wait for the element to exist.
|
|
14329
|
+
*/
|
|
14330
|
+
timeout?: number;
|
|
14115
14331
|
}
|
|
14116
14332
|
/**
|
|
14117
14333
|
* A fixed spot in the capture, for annotations that aren't anchored to an element.
|
|
@@ -14163,6 +14379,10 @@ export interface ElementFindingFields20 {
|
|
|
14163
14379
|
* Computed accessible name of the element per ARIA specification. Supports exact match or regex pattern using /pattern/ syntax.
|
|
14164
14380
|
*/
|
|
14165
14381
|
elementAria?: string;
|
|
14382
|
+
/**
|
|
14383
|
+
* Max duration in milliseconds to wait for the element to exist.
|
|
14384
|
+
*/
|
|
14385
|
+
timeout?: number;
|
|
14166
14386
|
}
|
|
14167
14387
|
/**
|
|
14168
14388
|
* A fixed spot in the capture, for annotations that aren't anchored to an element.
|
|
@@ -14214,6 +14434,10 @@ export interface ElementFindingFields21 {
|
|
|
14214
14434
|
* Computed accessible name of the element per ARIA specification. Supports exact match or regex pattern using /pattern/ syntax.
|
|
14215
14435
|
*/
|
|
14216
14436
|
elementAria?: string;
|
|
14437
|
+
/**
|
|
14438
|
+
* Max duration in milliseconds to wait for the element to exist.
|
|
14439
|
+
*/
|
|
14440
|
+
timeout?: number;
|
|
14217
14441
|
}
|
|
14218
14442
|
/**
|
|
14219
14443
|
* A fixed spot in the capture, for annotations that aren't anchored to an element.
|
|
@@ -14265,6 +14489,10 @@ export interface ElementFindingFields22 {
|
|
|
14265
14489
|
* Computed accessible name of the element per ARIA specification. Supports exact match or regex pattern using /pattern/ syntax.
|
|
14266
14490
|
*/
|
|
14267
14491
|
elementAria?: string;
|
|
14492
|
+
/**
|
|
14493
|
+
* Max duration in milliseconds to wait for the element to exist.
|
|
14494
|
+
*/
|
|
14495
|
+
timeout?: number;
|
|
14268
14496
|
}
|
|
14269
14497
|
/**
|
|
14270
14498
|
* A fixed spot in the capture, for annotations that aren't anchored to an element.
|
|
@@ -14316,6 +14544,10 @@ export interface ElementFindingFields23 {
|
|
|
14316
14544
|
* Computed accessible name of the element per ARIA specification. Supports exact match or regex pattern using /pattern/ syntax.
|
|
14317
14545
|
*/
|
|
14318
14546
|
elementAria?: string;
|
|
14547
|
+
/**
|
|
14548
|
+
* Max duration in milliseconds to wait for the element to exist.
|
|
14549
|
+
*/
|
|
14550
|
+
timeout?: number;
|
|
14319
14551
|
}
|
|
14320
14552
|
/**
|
|
14321
14553
|
* A fixed spot in the capture, for annotations that aren't anchored to an element.
|
|
@@ -14514,6 +14746,10 @@ export interface Common31 {
|
|
|
14514
14746
|
* Which visit of this step produced this report, when a routing goToStep re-ran it (the first visit omits this field). Present only in test results; system-populated.
|
|
14515
14747
|
*/
|
|
14516
14748
|
visit?: number;
|
|
14749
|
+
/**
|
|
14750
|
+
* Wall-clock duration of this step in milliseconds. When a routing `retry` action re-ran the step, this is the FINAL attempt's elapsed time — the attempt the reported `result` describes — not the sum across attempts. A step that was skipped or never executed reports `0`. Distinct from the `duration` input that some actions accept (for example a `click`'s press duration). Present only in test results; system-populated.
|
|
14751
|
+
*/
|
|
14752
|
+
durationMs?: number;
|
|
14517
14753
|
[k: string]: unknown;
|
|
14518
14754
|
}
|
|
14519
14755
|
/**
|
|
@@ -14651,6 +14887,10 @@ export interface Common32 {
|
|
|
14651
14887
|
* Which visit of this step produced this report, when a routing goToStep re-ran it (the first visit omits this field). Present only in test results; system-populated.
|
|
14652
14888
|
*/
|
|
14653
14889
|
visit?: number;
|
|
14890
|
+
/**
|
|
14891
|
+
* Wall-clock duration of this step in milliseconds. When a routing `retry` action re-ran the step, this is the FINAL attempt's elapsed time — the attempt the reported `result` describes — not the sum across attempts. A step that was skipped or never executed reports `0`. Distinct from the `duration` input that some actions accept (for example a `click`'s press duration). Present only in test results; system-populated.
|
|
14892
|
+
*/
|
|
14893
|
+
durationMs?: number;
|
|
14654
14894
|
[k: string]: unknown;
|
|
14655
14895
|
}
|
|
14656
14896
|
/**
|
|
@@ -14932,6 +15172,10 @@ export interface Common33 {
|
|
|
14932
15172
|
* Which visit of this step produced this report, when a routing goToStep re-ran it (the first visit omits this field). Present only in test results; system-populated.
|
|
14933
15173
|
*/
|
|
14934
15174
|
visit?: number;
|
|
15175
|
+
/**
|
|
15176
|
+
* Wall-clock duration of this step in milliseconds. When a routing `retry` action re-ran the step, this is the FINAL attempt's elapsed time — the attempt the reported `result` describes — not the sum across attempts. A step that was skipped or never executed reports `0`. Distinct from the `duration` input that some actions accept (for example a `click`'s press duration). Present only in test results; system-populated.
|
|
15177
|
+
*/
|
|
15178
|
+
durationMs?: number;
|
|
14935
15179
|
[k: string]: unknown;
|
|
14936
15180
|
}
|
|
14937
15181
|
/**
|
|
@@ -15075,6 +15319,10 @@ export interface Common34 {
|
|
|
15075
15319
|
* Which visit of this step produced this report, when a routing goToStep re-ran it (the first visit omits this field). Present only in test results; system-populated.
|
|
15076
15320
|
*/
|
|
15077
15321
|
visit?: number;
|
|
15322
|
+
/**
|
|
15323
|
+
* Wall-clock duration of this step in milliseconds. When a routing `retry` action re-ran the step, this is the FINAL attempt's elapsed time — the attempt the reported `result` describes — not the sum across attempts. A step that was skipped or never executed reports `0`. Distinct from the `duration` input that some actions accept (for example a `click`'s press duration). Present only in test results; system-populated.
|
|
15324
|
+
*/
|
|
15325
|
+
durationMs?: number;
|
|
15078
15326
|
[k: string]: unknown;
|
|
15079
15327
|
}
|
|
15080
15328
|
/**
|
|
@@ -15362,6 +15610,10 @@ export interface Common35 {
|
|
|
15362
15610
|
* Which visit of this step produced this report, when a routing goToStep re-ran it (the first visit omits this field). Present only in test results; system-populated.
|
|
15363
15611
|
*/
|
|
15364
15612
|
visit?: number;
|
|
15613
|
+
/**
|
|
15614
|
+
* Wall-clock duration of this step in milliseconds. When a routing `retry` action re-ran the step, this is the FINAL attempt's elapsed time — the attempt the reported `result` describes — not the sum across attempts. A step that was skipped or never executed reports `0`. Distinct from the `duration` input that some actions accept (for example a `click`'s press duration). Present only in test results; system-populated.
|
|
15615
|
+
*/
|
|
15616
|
+
durationMs?: number;
|
|
15365
15617
|
[k: string]: unknown;
|
|
15366
15618
|
}
|
|
15367
15619
|
/**
|
|
@@ -15879,6 +16131,10 @@ export interface Common36 {
|
|
|
15879
16131
|
* Which visit of this step produced this report, when a routing goToStep re-ran it (the first visit omits this field). Present only in test results; system-populated.
|
|
15880
16132
|
*/
|
|
15881
16133
|
visit?: number;
|
|
16134
|
+
/**
|
|
16135
|
+
* Wall-clock duration of this step in milliseconds. When a routing `retry` action re-ran the step, this is the FINAL attempt's elapsed time — the attempt the reported `result` describes — not the sum across attempts. A step that was skipped or never executed reports `0`. Distinct from the `duration` input that some actions accept (for example a `click`'s press duration). Present only in test results; system-populated.
|
|
16136
|
+
*/
|
|
16137
|
+
durationMs?: number;
|
|
15882
16138
|
[k: string]: unknown;
|
|
15883
16139
|
}
|
|
15884
16140
|
/**
|
|
@@ -16016,6 +16272,10 @@ export interface Common37 {
|
|
|
16016
16272
|
* Which visit of this step produced this report, when a routing goToStep re-ran it (the first visit omits this field). Present only in test results; system-populated.
|
|
16017
16273
|
*/
|
|
16018
16274
|
visit?: number;
|
|
16275
|
+
/**
|
|
16276
|
+
* Wall-clock duration of this step in milliseconds. When a routing `retry` action re-ran the step, this is the FINAL attempt's elapsed time — the attempt the reported `result` describes — not the sum across attempts. A step that was skipped or never executed reports `0`. Distinct from the `duration` input that some actions accept (for example a `click`'s press duration). Present only in test results; system-populated.
|
|
16277
|
+
*/
|
|
16278
|
+
durationMs?: number;
|
|
16019
16279
|
[k: string]: unknown;
|
|
16020
16280
|
}
|
|
16021
16281
|
/**
|
|
@@ -16223,6 +16483,10 @@ export interface Common38 {
|
|
|
16223
16483
|
* Which visit of this step produced this report, when a routing goToStep re-ran it (the first visit omits this field). Present only in test results; system-populated.
|
|
16224
16484
|
*/
|
|
16225
16485
|
visit?: number;
|
|
16486
|
+
/**
|
|
16487
|
+
* Wall-clock duration of this step in milliseconds. When a routing `retry` action re-ran the step, this is the FINAL attempt's elapsed time — the attempt the reported `result` describes — not the sum across attempts. A step that was skipped or never executed reports `0`. Distinct from the `duration` input that some actions accept (for example a `click`'s press duration). Present only in test results; system-populated.
|
|
16488
|
+
*/
|
|
16489
|
+
durationMs?: number;
|
|
16226
16490
|
[k: string]: unknown;
|
|
16227
16491
|
}
|
|
16228
16492
|
/**
|
|
@@ -16360,6 +16624,10 @@ export interface Common39 {
|
|
|
16360
16624
|
* Which visit of this step produced this report, when a routing goToStep re-ran it (the first visit omits this field). Present only in test results; system-populated.
|
|
16361
16625
|
*/
|
|
16362
16626
|
visit?: number;
|
|
16627
|
+
/**
|
|
16628
|
+
* Wall-clock duration of this step in milliseconds. When a routing `retry` action re-ran the step, this is the FINAL attempt's elapsed time — the attempt the reported `result` describes — not the sum across attempts. A step that was skipped or never executed reports `0`. Distinct from the `duration` input that some actions accept (for example a `click`'s press duration). Present only in test results; system-populated.
|
|
16629
|
+
*/
|
|
16630
|
+
durationMs?: number;
|
|
16363
16631
|
[k: string]: unknown;
|
|
16364
16632
|
}
|
|
16365
16633
|
/**
|
|
@@ -16688,6 +16956,10 @@ export interface Common40 {
|
|
|
16688
16956
|
* Which visit of this step produced this report, when a routing goToStep re-ran it (the first visit omits this field). Present only in test results; system-populated.
|
|
16689
16957
|
*/
|
|
16690
16958
|
visit?: number;
|
|
16959
|
+
/**
|
|
16960
|
+
* Wall-clock duration of this step in milliseconds. When a routing `retry` action re-ran the step, this is the FINAL attempt's elapsed time — the attempt the reported `result` describes — not the sum across attempts. A step that was skipped or never executed reports `0`. Distinct from the `duration` input that some actions accept (for example a `click`'s press duration). Present only in test results; system-populated.
|
|
16961
|
+
*/
|
|
16962
|
+
durationMs?: number;
|
|
16691
16963
|
[k: string]: unknown;
|
|
16692
16964
|
}
|
|
16693
16965
|
/**
|
|
@@ -16825,6 +17097,10 @@ export interface Common41 {
|
|
|
16825
17097
|
* Which visit of this step produced this report, when a routing goToStep re-ran it (the first visit omits this field). Present only in test results; system-populated.
|
|
16826
17098
|
*/
|
|
16827
17099
|
visit?: number;
|
|
17100
|
+
/**
|
|
17101
|
+
* Wall-clock duration of this step in milliseconds. When a routing `retry` action re-ran the step, this is the FINAL attempt's elapsed time — the attempt the reported `result` describes — not the sum across attempts. A step that was skipped or never executed reports `0`. Distinct from the `duration` input that some actions accept (for example a `click`'s press duration). Present only in test results; system-populated.
|
|
17102
|
+
*/
|
|
17103
|
+
durationMs?: number;
|
|
16828
17104
|
[k: string]: unknown;
|
|
16829
17105
|
}
|
|
16830
17106
|
/**
|
|
@@ -17002,6 +17278,10 @@ export interface ElementFindingFields24 {
|
|
|
17002
17278
|
* Computed accessible name of the element per ARIA specification. Supports exact match or regex pattern using /pattern/ syntax.
|
|
17003
17279
|
*/
|
|
17004
17280
|
elementAria?: string;
|
|
17281
|
+
/**
|
|
17282
|
+
* Max duration in milliseconds to wait for the element to exist.
|
|
17283
|
+
*/
|
|
17284
|
+
timeout?: number;
|
|
17005
17285
|
}
|
|
17006
17286
|
/**
|
|
17007
17287
|
* A fixed spot in the capture, for annotations that aren't anchored to an element.
|
|
@@ -17053,6 +17333,10 @@ export interface ElementFindingFields25 {
|
|
|
17053
17333
|
* Computed accessible name of the element per ARIA specification. Supports exact match or regex pattern using /pattern/ syntax.
|
|
17054
17334
|
*/
|
|
17055
17335
|
elementAria?: string;
|
|
17336
|
+
/**
|
|
17337
|
+
* Max duration in milliseconds to wait for the element to exist.
|
|
17338
|
+
*/
|
|
17339
|
+
timeout?: number;
|
|
17056
17340
|
}
|
|
17057
17341
|
/**
|
|
17058
17342
|
* A fixed spot in the capture, for annotations that aren't anchored to an element.
|
|
@@ -17104,6 +17388,10 @@ export interface ElementFindingFields26 {
|
|
|
17104
17388
|
* Computed accessible name of the element per ARIA specification. Supports exact match or regex pattern using /pattern/ syntax.
|
|
17105
17389
|
*/
|
|
17106
17390
|
elementAria?: string;
|
|
17391
|
+
/**
|
|
17392
|
+
* Max duration in milliseconds to wait for the element to exist.
|
|
17393
|
+
*/
|
|
17394
|
+
timeout?: number;
|
|
17107
17395
|
}
|
|
17108
17396
|
/**
|
|
17109
17397
|
* A fixed spot in the capture, for annotations that aren't anchored to an element.
|
|
@@ -17155,6 +17443,10 @@ export interface ElementFindingFields27 {
|
|
|
17155
17443
|
* Computed accessible name of the element per ARIA specification. Supports exact match or regex pattern using /pattern/ syntax.
|
|
17156
17444
|
*/
|
|
17157
17445
|
elementAria?: string;
|
|
17446
|
+
/**
|
|
17447
|
+
* Max duration in milliseconds to wait for the element to exist.
|
|
17448
|
+
*/
|
|
17449
|
+
timeout?: number;
|
|
17158
17450
|
}
|
|
17159
17451
|
/**
|
|
17160
17452
|
* A fixed spot in the capture, for annotations that aren't anchored to an element.
|
|
@@ -17206,6 +17498,10 @@ export interface ElementFindingFields28 {
|
|
|
17206
17498
|
* Computed accessible name of the element per ARIA specification. Supports exact match or regex pattern using /pattern/ syntax.
|
|
17207
17499
|
*/
|
|
17208
17500
|
elementAria?: string;
|
|
17501
|
+
/**
|
|
17502
|
+
* Max duration in milliseconds to wait for the element to exist.
|
|
17503
|
+
*/
|
|
17504
|
+
timeout?: number;
|
|
17209
17505
|
}
|
|
17210
17506
|
/**
|
|
17211
17507
|
* A fixed spot in the capture, for annotations that aren't anchored to an element.
|
|
@@ -17257,6 +17553,10 @@ export interface ElementFindingFields29 {
|
|
|
17257
17553
|
* Computed accessible name of the element per ARIA specification. Supports exact match or regex pattern using /pattern/ syntax.
|
|
17258
17554
|
*/
|
|
17259
17555
|
elementAria?: string;
|
|
17556
|
+
/**
|
|
17557
|
+
* Max duration in milliseconds to wait for the element to exist.
|
|
17558
|
+
*/
|
|
17559
|
+
timeout?: number;
|
|
17260
17560
|
}
|
|
17261
17561
|
/**
|
|
17262
17562
|
* A fixed spot in the capture, for annotations that aren't anchored to an element.
|
|
@@ -17453,6 +17753,10 @@ export interface ElementFindingFields30 {
|
|
|
17453
17753
|
* Computed accessible name of the element per ARIA specification. Supports exact match or regex pattern using /pattern/ syntax.
|
|
17454
17754
|
*/
|
|
17455
17755
|
elementAria?: string;
|
|
17756
|
+
/**
|
|
17757
|
+
* Max duration in milliseconds to wait for the element to exist.
|
|
17758
|
+
*/
|
|
17759
|
+
timeout?: number;
|
|
17456
17760
|
}
|
|
17457
17761
|
/**
|
|
17458
17762
|
* A fixed spot in the capture, for annotations that aren't anchored to an element.
|
|
@@ -17504,6 +17808,10 @@ export interface ElementFindingFields31 {
|
|
|
17504
17808
|
* Computed accessible name of the element per ARIA specification. Supports exact match or regex pattern using /pattern/ syntax.
|
|
17505
17809
|
*/
|
|
17506
17810
|
elementAria?: string;
|
|
17811
|
+
/**
|
|
17812
|
+
* Max duration in milliseconds to wait for the element to exist.
|
|
17813
|
+
*/
|
|
17814
|
+
timeout?: number;
|
|
17507
17815
|
}
|
|
17508
17816
|
/**
|
|
17509
17817
|
* A fixed spot in the capture, for annotations that aren't anchored to an element.
|
|
@@ -17555,6 +17863,10 @@ export interface ElementFindingFields32 {
|
|
|
17555
17863
|
* Computed accessible name of the element per ARIA specification. Supports exact match or regex pattern using /pattern/ syntax.
|
|
17556
17864
|
*/
|
|
17557
17865
|
elementAria?: string;
|
|
17866
|
+
/**
|
|
17867
|
+
* Max duration in milliseconds to wait for the element to exist.
|
|
17868
|
+
*/
|
|
17869
|
+
timeout?: number;
|
|
17558
17870
|
}
|
|
17559
17871
|
/**
|
|
17560
17872
|
* A fixed spot in the capture, for annotations that aren't anchored to an element.
|
|
@@ -17606,6 +17918,10 @@ export interface ElementFindingFields33 {
|
|
|
17606
17918
|
* Computed accessible name of the element per ARIA specification. Supports exact match or regex pattern using /pattern/ syntax.
|
|
17607
17919
|
*/
|
|
17608
17920
|
elementAria?: string;
|
|
17921
|
+
/**
|
|
17922
|
+
* Max duration in milliseconds to wait for the element to exist.
|
|
17923
|
+
*/
|
|
17924
|
+
timeout?: number;
|
|
17609
17925
|
}
|
|
17610
17926
|
/**
|
|
17611
17927
|
* A fixed spot in the capture, for annotations that aren't anchored to an element.
|
|
@@ -17657,6 +17973,10 @@ export interface ElementFindingFields34 {
|
|
|
17657
17973
|
* Computed accessible name of the element per ARIA specification. Supports exact match or regex pattern using /pattern/ syntax.
|
|
17658
17974
|
*/
|
|
17659
17975
|
elementAria?: string;
|
|
17976
|
+
/**
|
|
17977
|
+
* Max duration in milliseconds to wait for the element to exist.
|
|
17978
|
+
*/
|
|
17979
|
+
timeout?: number;
|
|
17660
17980
|
}
|
|
17661
17981
|
/**
|
|
17662
17982
|
* A fixed spot in the capture, for annotations that aren't anchored to an element.
|
|
@@ -17708,6 +18028,10 @@ export interface ElementFindingFields35 {
|
|
|
17708
18028
|
* Computed accessible name of the element per ARIA specification. Supports exact match or regex pattern using /pattern/ syntax.
|
|
17709
18029
|
*/
|
|
17710
18030
|
elementAria?: string;
|
|
18031
|
+
/**
|
|
18032
|
+
* Max duration in milliseconds to wait for the element to exist.
|
|
18033
|
+
*/
|
|
18034
|
+
timeout?: number;
|
|
17711
18035
|
}
|
|
17712
18036
|
/**
|
|
17713
18037
|
* A fixed spot in the capture, for annotations that aren't anchored to an element.
|