doc-detective 4.28.0 → 4.29.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/cli.js +69 -39
- package/dist/cli.js.map +1 -1
- package/dist/common/src/detectTests.d.ts +9 -0
- package/dist/common/src/detectTests.d.ts.map +1 -1
- package/dist/common/src/detectTests.js +22 -9
- package/dist/common/src/detectTests.js.map +1 -1
- package/dist/common/src/schemas/schemas.json +141 -57
- package/dist/common/src/types/generated/report_v3.d.ts +34 -0
- package/dist/common/src/types/generated/report_v3.d.ts.map +1 -1
- package/dist/common/src/validate.d.ts.map +1 -1
- package/dist/common/src/validate.js +95 -12
- package/dist/common/src/validate.js.map +1 -1
- package/dist/core/config.d.ts +66 -1
- package/dist/core/config.d.ts.map +1 -1
- package/dist/core/config.js +121 -68
- package/dist/core/config.js.map +1 -1
- package/dist/core/detectTests.d.ts.map +1 -1
- package/dist/core/detectTests.js +142 -36
- package/dist/core/detectTests.js.map +1 -1
- package/dist/core/expressions.d.ts.map +1 -1
- package/dist/core/expressions.js +24 -1
- package/dist/core/expressions.js.map +1 -1
- package/dist/core/index.d.ts +2 -1
- package/dist/core/index.d.ts.map +1 -1
- package/dist/core/index.js +55 -16
- package/dist/core/index.js.map +1 -1
- package/dist/core/openapi.d.ts.map +1 -1
- package/dist/core/openapi.js +22 -5
- package/dist/core/openapi.js.map +1 -1
- package/dist/core/resolveTests.d.ts.map +1 -1
- package/dist/core/resolveTests.js +56 -14
- package/dist/core/resolveTests.js.map +1 -1
- package/dist/core/telem.d.ts +2 -1
- package/dist/core/telem.d.ts.map +1 -1
- package/dist/core/telem.js +26 -2
- package/dist/core/telem.js.map +1 -1
- package/dist/core/tests/androidEmulator.d.ts.map +1 -1
- package/dist/core/tests/androidEmulator.js +13 -0
- package/dist/core/tests/androidEmulator.js.map +1 -1
- package/dist/core/tests/appSurface.d.ts +23 -0
- package/dist/core/tests/appSurface.d.ts.map +1 -1
- package/dist/core/tests/appSurface.js +3 -1
- package/dist/core/tests/appSurface.js.map +1 -1
- package/dist/core/tests/findStrategies.d.ts.map +1 -1
- package/dist/core/tests/findStrategies.js +83 -10
- package/dist/core/tests/findStrategies.js.map +1 -1
- package/dist/core/tests/iosSimulator.d.ts.map +1 -1
- package/dist/core/tests/iosSimulator.js +13 -0
- package/dist/core/tests/iosSimulator.js.map +1 -1
- package/dist/core/tests/mobileBrowser.d.ts +1 -0
- package/dist/core/tests/mobileBrowser.d.ts.map +1 -1
- package/dist/core/tests/mobileBrowser.js +8 -0
- package/dist/core/tests/mobileBrowser.js.map +1 -1
- package/dist/core/tests.d.ts +83 -2
- package/dist/core/tests.d.ts.map +1 -1
- package/dist/core/tests.js +572 -70
- package/dist/core/tests.js.map +1 -1
- package/dist/core/utils.d.ts +3 -2
- package/dist/core/utils.d.ts.map +1 -1
- package/dist/core/utils.js +46 -29
- package/dist/core/utils.js.map +1 -1
- package/dist/core/warmPhase.d.ts +161 -0
- package/dist/core/warmPhase.d.ts.map +1 -0
- package/dist/core/warmPhase.js +341 -0
- package/dist/core/warmPhase.js.map +1 -0
- package/dist/index.cjs +1073 -246
- package/dist/utils.d.ts +2 -1
- package/dist/utils.d.ts.map +1 -1
- package/dist/utils.js +41 -8
- package/dist/utils.js.map +1 -1
- package/package.json +1 -1
|
@@ -9282,7 +9282,7 @@
|
|
|
9282
9282
|
},
|
|
9283
9283
|
"elementText": {
|
|
9284
9284
|
"type": "string",
|
|
9285
|
-
"description": "Display text of the element to find. If combined with other element finding fields, the element must match all specified criteria."
|
|
9285
|
+
"description": "Display text of the element to find. Matched against the element's full visible text with whitespace normalized (leading/trailing trimmed, internal runs collapsed to single spaces), so text a framework splits across several nodes still matches and a driver's surrounding whitespace doesn't cause a miss. Wrap the value in slashes (`/pattern/`) to match a substring by regular expression instead of the whole normalized text. If combined with other element finding fields, the element must match all specified criteria."
|
|
9286
9286
|
},
|
|
9287
9287
|
"selector": {
|
|
9288
9288
|
"type": "string",
|
|
@@ -13428,7 +13428,7 @@
|
|
|
13428
13428
|
},
|
|
13429
13429
|
"elementText": {
|
|
13430
13430
|
"type": "string",
|
|
13431
|
-
"description": "Display text of the element to find. If combined with other element finding fields, the element must match all specified criteria."
|
|
13431
|
+
"description": "Display text of the element to find. Matched against the element's full visible text with whitespace normalized (leading/trailing trimmed, internal runs collapsed to single spaces), so text a framework splits across several nodes still matches and a driver's surrounding whitespace doesn't cause a miss. Wrap the value in slashes (`/pattern/`) to match a substring by regular expression instead of the whole normalized text. If combined with other element finding fields, the element must match all specified criteria."
|
|
13432
13432
|
},
|
|
13433
13433
|
"selector": {
|
|
13434
13434
|
"type": "string",
|
|
@@ -18659,7 +18659,7 @@
|
|
|
18659
18659
|
},
|
|
18660
18660
|
"elementText": {
|
|
18661
18661
|
"type": "string",
|
|
18662
|
-
"description": "
|
|
18662
|
+
"description": "Display text of the element to wait for. Matched against the element's full visible text with whitespace normalized (leading/trailing trimmed, internal runs collapsed), so framework-fragmented text still matches. Wrap the value in slashes (`/pattern/`) to match a substring by regular expression instead of the whole normalized text."
|
|
18663
18663
|
},
|
|
18664
18664
|
"elementId": {
|
|
18665
18665
|
"type": "string",
|
|
@@ -19191,7 +19191,7 @@
|
|
|
19191
19191
|
},
|
|
19192
19192
|
"elementText": {
|
|
19193
19193
|
"type": "string",
|
|
19194
|
-
"description": "
|
|
19194
|
+
"description": "Display text of the element to wait for. Matched against the element's full visible text with whitespace normalized (leading/trailing trimmed, internal runs collapsed), so framework-fragmented text still matches. Wrap the value in slashes (`/pattern/`) to match a substring by regular expression instead of the whole normalized text."
|
|
19195
19195
|
},
|
|
19196
19196
|
"elementId": {
|
|
19197
19197
|
"type": "string",
|
|
@@ -54921,7 +54921,7 @@
|
|
|
54921
54921
|
},
|
|
54922
54922
|
"elementText": {
|
|
54923
54923
|
"type": "string",
|
|
54924
|
-
"description": "Display text of the element to find. If combined with other element finding fields, the element must match all specified criteria."
|
|
54924
|
+
"description": "Display text of the element to find. Matched against the element's full visible text with whitespace normalized (leading/trailing trimmed, internal runs collapsed to single spaces), so text a framework splits across several nodes still matches and a driver's surrounding whitespace doesn't cause a miss. Wrap the value in slashes (`/pattern/`) to match a substring by regular expression instead of the whole normalized text. If combined with other element finding fields, the element must match all specified criteria."
|
|
54925
54925
|
},
|
|
54926
54926
|
"selector": {
|
|
54927
54927
|
"type": "string",
|
|
@@ -59067,7 +59067,7 @@
|
|
|
59067
59067
|
},
|
|
59068
59068
|
"elementText": {
|
|
59069
59069
|
"type": "string",
|
|
59070
|
-
"description": "Display text of the element to find. If combined with other element finding fields, the element must match all specified criteria."
|
|
59070
|
+
"description": "Display text of the element to find. Matched against the element's full visible text with whitespace normalized (leading/trailing trimmed, internal runs collapsed to single spaces), so text a framework splits across several nodes still matches and a driver's surrounding whitespace doesn't cause a miss. Wrap the value in slashes (`/pattern/`) to match a substring by regular expression instead of the whole normalized text. If combined with other element finding fields, the element must match all specified criteria."
|
|
59071
59071
|
},
|
|
59072
59072
|
"selector": {
|
|
59073
59073
|
"type": "string",
|
|
@@ -64298,7 +64298,7 @@
|
|
|
64298
64298
|
},
|
|
64299
64299
|
"elementText": {
|
|
64300
64300
|
"type": "string",
|
|
64301
|
-
"description": "
|
|
64301
|
+
"description": "Display text of the element to wait for. Matched against the element's full visible text with whitespace normalized (leading/trailing trimmed, internal runs collapsed), so framework-fragmented text still matches. Wrap the value in slashes (`/pattern/`) to match a substring by regular expression instead of the whole normalized text."
|
|
64302
64302
|
},
|
|
64303
64303
|
"elementId": {
|
|
64304
64304
|
"type": "string",
|
|
@@ -64830,7 +64830,7 @@
|
|
|
64830
64830
|
},
|
|
64831
64831
|
"elementText": {
|
|
64832
64832
|
"type": "string",
|
|
64833
|
-
"description": "
|
|
64833
|
+
"description": "Display text of the element to wait for. Matched against the element's full visible text with whitespace normalized (leading/trailing trimmed, internal runs collapsed), so framework-fragmented text still matches. Wrap the value in slashes (`/pattern/`) to match a substring by regular expression instead of the whole normalized text."
|
|
64834
64834
|
},
|
|
64835
64835
|
"elementId": {
|
|
64836
64836
|
"type": "string",
|
|
@@ -95494,7 +95494,7 @@
|
|
|
95494
95494
|
},
|
|
95495
95495
|
"elementText": {
|
|
95496
95496
|
"type": "string",
|
|
95497
|
-
"description": "Display text of the element to find. If combined with other element finding fields, the element must match all specified criteria."
|
|
95497
|
+
"description": "Display text of the element to find. Matched against the element's full visible text with whitespace normalized (leading/trailing trimmed, internal runs collapsed to single spaces), so text a framework splits across several nodes still matches and a driver's surrounding whitespace doesn't cause a miss. Wrap the value in slashes (`/pattern/`) to match a substring by regular expression instead of the whole normalized text. If combined with other element finding fields, the element must match all specified criteria."
|
|
95498
95498
|
},
|
|
95499
95499
|
"selector": {
|
|
95500
95500
|
"type": "string",
|
|
@@ -99640,7 +99640,7 @@
|
|
|
99640
99640
|
},
|
|
99641
99641
|
"elementText": {
|
|
99642
99642
|
"type": "string",
|
|
99643
|
-
"description": "Display text of the element to find. If combined with other element finding fields, the element must match all specified criteria."
|
|
99643
|
+
"description": "Display text of the element to find. Matched against the element's full visible text with whitespace normalized (leading/trailing trimmed, internal runs collapsed to single spaces), so text a framework splits across several nodes still matches and a driver's surrounding whitespace doesn't cause a miss. Wrap the value in slashes (`/pattern/`) to match a substring by regular expression instead of the whole normalized text. If combined with other element finding fields, the element must match all specified criteria."
|
|
99644
99644
|
},
|
|
99645
99645
|
"selector": {
|
|
99646
99646
|
"type": "string",
|
|
@@ -103922,7 +103922,7 @@
|
|
|
103922
103922
|
},
|
|
103923
103923
|
"elementText": {
|
|
103924
103924
|
"type": "string",
|
|
103925
|
-
"description": "
|
|
103925
|
+
"description": "Display text of the element to wait for. Matched against the element's full visible text with whitespace normalized (leading/trailing trimmed, internal runs collapsed), so framework-fragmented text still matches. Wrap the value in slashes (`/pattern/`) to match a substring by regular expression instead of the whole normalized text."
|
|
103926
103926
|
},
|
|
103927
103927
|
"elementId": {
|
|
103928
103928
|
"type": "string",
|
|
@@ -104454,7 +104454,7 @@
|
|
|
104454
104454
|
},
|
|
104455
104455
|
"elementText": {
|
|
104456
104456
|
"type": "string",
|
|
104457
|
-
"description": "
|
|
104457
|
+
"description": "Display text of the element to wait for. Matched against the element's full visible text with whitespace normalized (leading/trailing trimmed, internal runs collapsed), so framework-fragmented text still matches. Wrap the value in slashes (`/pattern/`) to match a substring by regular expression instead of the whole normalized text."
|
|
104458
104458
|
},
|
|
104459
104459
|
"elementId": {
|
|
104460
104460
|
"type": "string",
|
|
@@ -113847,7 +113847,7 @@
|
|
|
113847
113847
|
},
|
|
113848
113848
|
"elementText": {
|
|
113849
113849
|
"type": "string",
|
|
113850
|
-
"description": "Display text of the element to find. If combined with other element finding fields, the element must match all specified criteria."
|
|
113850
|
+
"description": "Display text of the element to find. Matched against the element's full visible text with whitespace normalized (leading/trailing trimmed, internal runs collapsed to single spaces), so text a framework splits across several nodes still matches and a driver's surrounding whitespace doesn't cause a miss. Wrap the value in slashes (`/pattern/`) to match a substring by regular expression instead of the whole normalized text. If combined with other element finding fields, the element must match all specified criteria."
|
|
113851
113851
|
},
|
|
113852
113852
|
"selector": {
|
|
113853
113853
|
"type": "string",
|
|
@@ -117993,7 +117993,7 @@
|
|
|
117993
117993
|
},
|
|
117994
117994
|
"elementText": {
|
|
117995
117995
|
"type": "string",
|
|
117996
|
-
"description": "Display text of the element to find. If combined with other element finding fields, the element must match all specified criteria."
|
|
117996
|
+
"description": "Display text of the element to find. Matched against the element's full visible text with whitespace normalized (leading/trailing trimmed, internal runs collapsed to single spaces), so text a framework splits across several nodes still matches and a driver's surrounding whitespace doesn't cause a miss. Wrap the value in slashes (`/pattern/`) to match a substring by regular expression instead of the whole normalized text. If combined with other element finding fields, the element must match all specified criteria."
|
|
117997
117997
|
},
|
|
117998
117998
|
"selector": {
|
|
117999
117999
|
"type": "string",
|
|
@@ -123224,7 +123224,7 @@
|
|
|
123224
123224
|
},
|
|
123225
123225
|
"elementText": {
|
|
123226
123226
|
"type": "string",
|
|
123227
|
-
"description": "
|
|
123227
|
+
"description": "Display text of the element to wait for. Matched against the element's full visible text with whitespace normalized (leading/trailing trimmed, internal runs collapsed), so framework-fragmented text still matches. Wrap the value in slashes (`/pattern/`) to match a substring by regular expression instead of the whole normalized text."
|
|
123228
123228
|
},
|
|
123229
123229
|
"elementId": {
|
|
123230
123230
|
"type": "string",
|
|
@@ -123756,7 +123756,7 @@
|
|
|
123756
123756
|
},
|
|
123757
123757
|
"elementText": {
|
|
123758
123758
|
"type": "string",
|
|
123759
|
-
"description": "
|
|
123759
|
+
"description": "Display text of the element to wait for. Matched against the element's full visible text with whitespace normalized (leading/trailing trimmed, internal runs collapsed), so framework-fragmented text still matches. Wrap the value in slashes (`/pattern/`) to match a substring by regular expression instead of the whole normalized text."
|
|
123760
123760
|
},
|
|
123761
123761
|
"elementId": {
|
|
123762
123762
|
"type": "string",
|
|
@@ -159486,7 +159486,7 @@
|
|
|
159486
159486
|
},
|
|
159487
159487
|
"elementText": {
|
|
159488
159488
|
"type": "string",
|
|
159489
|
-
"description": "Display text of the element to find. If combined with other element finding fields, the element must match all specified criteria."
|
|
159489
|
+
"description": "Display text of the element to find. Matched against the element's full visible text with whitespace normalized (leading/trailing trimmed, internal runs collapsed to single spaces), so text a framework splits across several nodes still matches and a driver's surrounding whitespace doesn't cause a miss. Wrap the value in slashes (`/pattern/`) to match a substring by regular expression instead of the whole normalized text. If combined with other element finding fields, the element must match all specified criteria."
|
|
159490
159490
|
},
|
|
159491
159491
|
"selector": {
|
|
159492
159492
|
"type": "string",
|
|
@@ -163632,7 +163632,7 @@
|
|
|
163632
163632
|
},
|
|
163633
163633
|
"elementText": {
|
|
163634
163634
|
"type": "string",
|
|
163635
|
-
"description": "Display text of the element to find. If combined with other element finding fields, the element must match all specified criteria."
|
|
163635
|
+
"description": "Display text of the element to find. Matched against the element's full visible text with whitespace normalized (leading/trailing trimmed, internal runs collapsed to single spaces), so text a framework splits across several nodes still matches and a driver's surrounding whitespace doesn't cause a miss. Wrap the value in slashes (`/pattern/`) to match a substring by regular expression instead of the whole normalized text. If combined with other element finding fields, the element must match all specified criteria."
|
|
163636
163636
|
},
|
|
163637
163637
|
"selector": {
|
|
163638
163638
|
"type": "string",
|
|
@@ -168863,7 +168863,7 @@
|
|
|
168863
168863
|
},
|
|
168864
168864
|
"elementText": {
|
|
168865
168865
|
"type": "string",
|
|
168866
|
-
"description": "
|
|
168866
|
+
"description": "Display text of the element to wait for. Matched against the element's full visible text with whitespace normalized (leading/trailing trimmed, internal runs collapsed), so framework-fragmented text still matches. Wrap the value in slashes (`/pattern/`) to match a substring by regular expression instead of the whole normalized text."
|
|
168867
168867
|
},
|
|
168868
168868
|
"elementId": {
|
|
168869
168869
|
"type": "string",
|
|
@@ -169395,7 +169395,7 @@
|
|
|
169395
169395
|
},
|
|
169396
169396
|
"elementText": {
|
|
169397
169397
|
"type": "string",
|
|
169398
|
-
"description": "
|
|
169398
|
+
"description": "Display text of the element to wait for. Matched against the element's full visible text with whitespace normalized (leading/trailing trimmed, internal runs collapsed), so framework-fragmented text still matches. Wrap the value in slashes (`/pattern/`) to match a substring by regular expression instead of the whole normalized text."
|
|
169399
169399
|
},
|
|
169400
169400
|
"elementId": {
|
|
169401
169401
|
"type": "string",
|
|
@@ -206864,7 +206864,7 @@
|
|
|
206864
206864
|
},
|
|
206865
206865
|
"elementText": {
|
|
206866
206866
|
"type": "string",
|
|
206867
|
-
"description": "Display text of the element to find. If combined with other element finding fields, the element must match all specified criteria."
|
|
206867
|
+
"description": "Display text of the element to find. Matched against the element's full visible text with whitespace normalized (leading/trailing trimmed, internal runs collapsed to single spaces), so text a framework splits across several nodes still matches and a driver's surrounding whitespace doesn't cause a miss. Wrap the value in slashes (`/pattern/`) to match a substring by regular expression instead of the whole normalized text. If combined with other element finding fields, the element must match all specified criteria."
|
|
206868
206868
|
},
|
|
206869
206869
|
"selector": {
|
|
206870
206870
|
"type": "string",
|
|
@@ -211010,7 +211010,7 @@
|
|
|
211010
211010
|
},
|
|
211011
211011
|
"elementText": {
|
|
211012
211012
|
"type": "string",
|
|
211013
|
-
"description": "Display text of the element to find. If combined with other element finding fields, the element must match all specified criteria."
|
|
211013
|
+
"description": "Display text of the element to find. Matched against the element's full visible text with whitespace normalized (leading/trailing trimmed, internal runs collapsed to single spaces), so text a framework splits across several nodes still matches and a driver's surrounding whitespace doesn't cause a miss. Wrap the value in slashes (`/pattern/`) to match a substring by regular expression instead of the whole normalized text. If combined with other element finding fields, the element must match all specified criteria."
|
|
211014
211014
|
},
|
|
211015
211015
|
"selector": {
|
|
211016
211016
|
"type": "string",
|
|
@@ -216241,7 +216241,7 @@
|
|
|
216241
216241
|
},
|
|
216242
216242
|
"elementText": {
|
|
216243
216243
|
"type": "string",
|
|
216244
|
-
"description": "
|
|
216244
|
+
"description": "Display text of the element to wait for. Matched against the element's full visible text with whitespace normalized (leading/trailing trimmed, internal runs collapsed), so framework-fragmented text still matches. Wrap the value in slashes (`/pattern/`) to match a substring by regular expression instead of the whole normalized text."
|
|
216245
216245
|
},
|
|
216246
216246
|
"elementId": {
|
|
216247
216247
|
"type": "string",
|
|
@@ -216773,7 +216773,7 @@
|
|
|
216773
216773
|
},
|
|
216774
216774
|
"elementText": {
|
|
216775
216775
|
"type": "string",
|
|
216776
|
-
"description": "
|
|
216776
|
+
"description": "Display text of the element to wait for. Matched against the element's full visible text with whitespace normalized (leading/trailing trimmed, internal runs collapsed), so framework-fragmented text still matches. Wrap the value in slashes (`/pattern/`) to match a substring by regular expression instead of the whole normalized text."
|
|
216777
216777
|
},
|
|
216778
216778
|
"elementId": {
|
|
216779
216779
|
"type": "string",
|
|
@@ -251765,7 +251765,7 @@
|
|
|
251765
251765
|
},
|
|
251766
251766
|
"elementText": {
|
|
251767
251767
|
"type": "string",
|
|
251768
|
-
"description": "Display text of the element to find. If combined with other element finding fields, the element must match all specified criteria."
|
|
251768
|
+
"description": "Display text of the element to find. Matched against the element's full visible text with whitespace normalized (leading/trailing trimmed, internal runs collapsed to single spaces), so text a framework splits across several nodes still matches and a driver's surrounding whitespace doesn't cause a miss. Wrap the value in slashes (`/pattern/`) to match a substring by regular expression instead of the whole normalized text. If combined with other element finding fields, the element must match all specified criteria."
|
|
251769
251769
|
},
|
|
251770
251770
|
"selector": {
|
|
251771
251771
|
"type": "string",
|
|
@@ -255911,7 +255911,7 @@
|
|
|
255911
255911
|
},
|
|
255912
255912
|
"elementText": {
|
|
255913
255913
|
"type": "string",
|
|
255914
|
-
"description": "Display text of the element to find. If combined with other element finding fields, the element must match all specified criteria."
|
|
255914
|
+
"description": "Display text of the element to find. Matched against the element's full visible text with whitespace normalized (leading/trailing trimmed, internal runs collapsed to single spaces), so text a framework splits across several nodes still matches and a driver's surrounding whitespace doesn't cause a miss. Wrap the value in slashes (`/pattern/`) to match a substring by regular expression instead of the whole normalized text. If combined with other element finding fields, the element must match all specified criteria."
|
|
255915
255915
|
},
|
|
255916
255916
|
"selector": {
|
|
255917
255917
|
"type": "string",
|
|
@@ -261142,7 +261142,7 @@
|
|
|
261142
261142
|
},
|
|
261143
261143
|
"elementText": {
|
|
261144
261144
|
"type": "string",
|
|
261145
|
-
"description": "
|
|
261145
|
+
"description": "Display text of the element to wait for. Matched against the element's full visible text with whitespace normalized (leading/trailing trimmed, internal runs collapsed), so framework-fragmented text still matches. Wrap the value in slashes (`/pattern/`) to match a substring by regular expression instead of the whole normalized text."
|
|
261146
261146
|
},
|
|
261147
261147
|
"elementId": {
|
|
261148
261148
|
"type": "string",
|
|
@@ -261674,7 +261674,7 @@
|
|
|
261674
261674
|
},
|
|
261675
261675
|
"elementText": {
|
|
261676
261676
|
"type": "string",
|
|
261677
|
-
"description": "
|
|
261677
|
+
"description": "Display text of the element to wait for. Matched against the element's full visible text with whitespace normalized (leading/trailing trimmed, internal runs collapsed), so framework-fragmented text still matches. Wrap the value in slashes (`/pattern/`) to match a substring by regular expression instead of the whole normalized text."
|
|
261678
261678
|
},
|
|
261679
261679
|
"elementId": {
|
|
261680
261680
|
"type": "string",
|
|
@@ -299627,7 +299627,7 @@
|
|
|
299627
299627
|
},
|
|
299628
299628
|
"elementText": {
|
|
299629
299629
|
"type": "string",
|
|
299630
|
-
"description": "Display text of the element to find. If combined with other element finding fields, the element must match all specified criteria."
|
|
299630
|
+
"description": "Display text of the element to find. Matched against the element's full visible text with whitespace normalized (leading/trailing trimmed, internal runs collapsed to single spaces), so text a framework splits across several nodes still matches and a driver's surrounding whitespace doesn't cause a miss. Wrap the value in slashes (`/pattern/`) to match a substring by regular expression instead of the whole normalized text. If combined with other element finding fields, the element must match all specified criteria."
|
|
299631
299631
|
},
|
|
299632
299632
|
"selector": {
|
|
299633
299633
|
"type": "string",
|
|
@@ -303773,7 +303773,7 @@
|
|
|
303773
303773
|
},
|
|
303774
303774
|
"elementText": {
|
|
303775
303775
|
"type": "string",
|
|
303776
|
-
"description": "Display text of the element to find. If combined with other element finding fields, the element must match all specified criteria."
|
|
303776
|
+
"description": "Display text of the element to find. Matched against the element's full visible text with whitespace normalized (leading/trailing trimmed, internal runs collapsed to single spaces), so text a framework splits across several nodes still matches and a driver's surrounding whitespace doesn't cause a miss. Wrap the value in slashes (`/pattern/`) to match a substring by regular expression instead of the whole normalized text. If combined with other element finding fields, the element must match all specified criteria."
|
|
303777
303777
|
},
|
|
303778
303778
|
"selector": {
|
|
303779
303779
|
"type": "string",
|
|
@@ -309004,7 +309004,7 @@
|
|
|
309004
309004
|
},
|
|
309005
309005
|
"elementText": {
|
|
309006
309006
|
"type": "string",
|
|
309007
|
-
"description": "
|
|
309007
|
+
"description": "Display text of the element to wait for. Matched against the element's full visible text with whitespace normalized (leading/trailing trimmed, internal runs collapsed), so framework-fragmented text still matches. Wrap the value in slashes (`/pattern/`) to match a substring by regular expression instead of the whole normalized text."
|
|
309008
309008
|
},
|
|
309009
309009
|
"elementId": {
|
|
309010
309010
|
"type": "string",
|
|
@@ -309536,7 +309536,7 @@
|
|
|
309536
309536
|
},
|
|
309537
309537
|
"elementText": {
|
|
309538
309538
|
"type": "string",
|
|
309539
|
-
"description": "
|
|
309539
|
+
"description": "Display text of the element to wait for. Matched against the element's full visible text with whitespace normalized (leading/trailing trimmed, internal runs collapsed), so framework-fragmented text still matches. Wrap the value in slashes (`/pattern/`) to match a substring by regular expression instead of the whole normalized text."
|
|
309540
309540
|
},
|
|
309541
309541
|
"elementId": {
|
|
309542
309542
|
"type": "string",
|
|
@@ -344528,7 +344528,7 @@
|
|
|
344528
344528
|
},
|
|
344529
344529
|
"elementText": {
|
|
344530
344530
|
"type": "string",
|
|
344531
|
-
"description": "Display text of the element to find. If combined with other element finding fields, the element must match all specified criteria."
|
|
344531
|
+
"description": "Display text of the element to find. Matched against the element's full visible text with whitespace normalized (leading/trailing trimmed, internal runs collapsed to single spaces), so text a framework splits across several nodes still matches and a driver's surrounding whitespace doesn't cause a miss. Wrap the value in slashes (`/pattern/`) to match a substring by regular expression instead of the whole normalized text. If combined with other element finding fields, the element must match all specified criteria."
|
|
344532
344532
|
},
|
|
344533
344533
|
"selector": {
|
|
344534
344534
|
"type": "string",
|
|
@@ -348674,7 +348674,7 @@
|
|
|
348674
348674
|
},
|
|
348675
348675
|
"elementText": {
|
|
348676
348676
|
"type": "string",
|
|
348677
|
-
"description": "Display text of the element to find. If combined with other element finding fields, the element must match all specified criteria."
|
|
348677
|
+
"description": "Display text of the element to find. Matched against the element's full visible text with whitespace normalized (leading/trailing trimmed, internal runs collapsed to single spaces), so text a framework splits across several nodes still matches and a driver's surrounding whitespace doesn't cause a miss. Wrap the value in slashes (`/pattern/`) to match a substring by regular expression instead of the whole normalized text. If combined with other element finding fields, the element must match all specified criteria."
|
|
348678
348678
|
},
|
|
348679
348679
|
"selector": {
|
|
348680
348680
|
"type": "string",
|
|
@@ -353905,7 +353905,7 @@
|
|
|
353905
353905
|
},
|
|
353906
353906
|
"elementText": {
|
|
353907
353907
|
"type": "string",
|
|
353908
|
-
"description": "
|
|
353908
|
+
"description": "Display text of the element to wait for. Matched against the element's full visible text with whitespace normalized (leading/trailing trimmed, internal runs collapsed), so framework-fragmented text still matches. Wrap the value in slashes (`/pattern/`) to match a substring by regular expression instead of the whole normalized text."
|
|
353909
353909
|
},
|
|
353910
353910
|
"elementId": {
|
|
353911
353911
|
"type": "string",
|
|
@@ -354437,7 +354437,7 @@
|
|
|
354437
354437
|
},
|
|
354438
354438
|
"elementText": {
|
|
354439
354439
|
"type": "string",
|
|
354440
|
-
"description": "
|
|
354440
|
+
"description": "Display text of the element to wait for. Matched against the element's full visible text with whitespace normalized (leading/trailing trimmed, internal runs collapsed), so framework-fragmented text still matches. Wrap the value in slashes (`/pattern/`) to match a substring by regular expression instead of the whole normalized text."
|
|
354441
354441
|
},
|
|
354442
354442
|
"elementId": {
|
|
354443
354443
|
"type": "string",
|
|
@@ -383802,6 +383802,71 @@
|
|
|
383802
383802
|
}
|
|
383803
383803
|
]
|
|
383804
383804
|
}
|
|
383805
|
+
},
|
|
383806
|
+
"warm": {
|
|
383807
|
+
"type": "object",
|
|
383808
|
+
"description": "Results of the run's inline warm phase — the always-on, best-effort provisioning pass (dependency installs, device boots, session probes) performed between test resolution and test execution. A failed task never gates the run; the per-context paths retry or skip with their normal semantics. Absent when the run ended before the phase (for example, when no specs matched). System-populated.",
|
|
383809
|
+
"readOnly": true,
|
|
383810
|
+
"additionalProperties": false,
|
|
383811
|
+
"required": [
|
|
383812
|
+
"durationMs",
|
|
383813
|
+
"tasks"
|
|
383814
|
+
],
|
|
383815
|
+
"properties": {
|
|
383816
|
+
"durationMs": {
|
|
383817
|
+
"type": "number",
|
|
383818
|
+
"description": "Wall-clock duration of the warm phase in milliseconds. Tasks overlap, so this is less than the sum of the per-task durations."
|
|
383819
|
+
},
|
|
383820
|
+
"tasks": {
|
|
383821
|
+
"type": "array",
|
|
383822
|
+
"description": "One entry per executed warm task.",
|
|
383823
|
+
"items": {
|
|
383824
|
+
"type": "object",
|
|
383825
|
+
"additionalProperties": false,
|
|
383826
|
+
"required": [
|
|
383827
|
+
"name",
|
|
383828
|
+
"kind",
|
|
383829
|
+
"outcome",
|
|
383830
|
+
"durationMs"
|
|
383831
|
+
],
|
|
383832
|
+
"properties": {
|
|
383833
|
+
"name": {
|
|
383834
|
+
"type": "string",
|
|
383835
|
+
"description": "Task identity, e.g. `browser-install:chrome` or `device-boot:android:<default>:<latest>`."
|
|
383836
|
+
},
|
|
383837
|
+
"kind": {
|
|
383838
|
+
"type": "string",
|
|
383839
|
+
"enum": [
|
|
383840
|
+
"driver-install",
|
|
383841
|
+
"browser-install",
|
|
383842
|
+
"device-boot",
|
|
383843
|
+
"wda-check",
|
|
383844
|
+
"session-probe",
|
|
383845
|
+
"chromedriver-prefetch"
|
|
383846
|
+
],
|
|
383847
|
+
"description": "What the task pre-pays: a native app driver install, a browser install, a simulator/emulator boot, the managed WebDriverAgent availability check, the concurrent-run driver session probe, or the android mobile-web chromedriver download."
|
|
383848
|
+
},
|
|
383849
|
+
"outcome": {
|
|
383850
|
+
"type": "string",
|
|
383851
|
+
"enum": [
|
|
383852
|
+
"warmed",
|
|
383853
|
+
"skipped",
|
|
383854
|
+
"failed"
|
|
383855
|
+
],
|
|
383856
|
+
"description": "`warmed` — the work was performed (for device boots, the boot was initiated); `skipped` — nothing to do or the environment isn't ready (the consuming context handles it as usual); `failed` — the attempt failed (logged as a warning; never fails the run)."
|
|
383857
|
+
},
|
|
383858
|
+
"durationMs": {
|
|
383859
|
+
"type": "number",
|
|
383860
|
+
"description": "Wall-clock duration of this task in milliseconds."
|
|
383861
|
+
},
|
|
383862
|
+
"note": {
|
|
383863
|
+
"type": "string",
|
|
383864
|
+
"description": "Human-readable detail about the outcome."
|
|
383865
|
+
}
|
|
383866
|
+
}
|
|
383867
|
+
}
|
|
383868
|
+
}
|
|
383869
|
+
}
|
|
383805
383870
|
}
|
|
383806
383871
|
},
|
|
383807
383872
|
"required": [
|
|
@@ -383823,7 +383888,26 @@
|
|
|
383823
383888
|
}
|
|
383824
383889
|
]
|
|
383825
383890
|
}
|
|
383826
|
-
]
|
|
383891
|
+
],
|
|
383892
|
+
"warm": {
|
|
383893
|
+
"durationMs": 4211,
|
|
383894
|
+
"tasks": [
|
|
383895
|
+
{
|
|
383896
|
+
"name": "browser-install:chrome",
|
|
383897
|
+
"kind": "browser-install",
|
|
383898
|
+
"outcome": "skipped",
|
|
383899
|
+
"durationMs": 2,
|
|
383900
|
+
"note": "'chrome' is already available"
|
|
383901
|
+
},
|
|
383902
|
+
{
|
|
383903
|
+
"name": "session-probe",
|
|
383904
|
+
"kind": "session-probe",
|
|
383905
|
+
"outcome": "warmed",
|
|
383906
|
+
"durationMs": 4205,
|
|
383907
|
+
"note": "1 combination ok"
|
|
383908
|
+
}
|
|
383909
|
+
]
|
|
383910
|
+
}
|
|
383827
383911
|
},
|
|
383828
383912
|
{
|
|
383829
383913
|
"specs": [
|
|
@@ -395630,7 +395714,7 @@
|
|
|
395630
395714
|
},
|
|
395631
395715
|
"elementText": {
|
|
395632
395716
|
"type": "string",
|
|
395633
|
-
"description": "Display text of the element to find. If combined with other element finding fields, the element must match all specified criteria."
|
|
395717
|
+
"description": "Display text of the element to find. Matched against the element's full visible text with whitespace normalized (leading/trailing trimmed, internal runs collapsed to single spaces), so text a framework splits across several nodes still matches and a driver's surrounding whitespace doesn't cause a miss. Wrap the value in slashes (`/pattern/`) to match a substring by regular expression instead of the whole normalized text. If combined with other element finding fields, the element must match all specified criteria."
|
|
395634
395718
|
},
|
|
395635
395719
|
"selector": {
|
|
395636
395720
|
"type": "string",
|
|
@@ -399776,7 +399860,7 @@
|
|
|
399776
399860
|
},
|
|
399777
399861
|
"elementText": {
|
|
399778
399862
|
"type": "string",
|
|
399779
|
-
"description": "Display text of the element to find. If combined with other element finding fields, the element must match all specified criteria."
|
|
399863
|
+
"description": "Display text of the element to find. Matched against the element's full visible text with whitespace normalized (leading/trailing trimmed, internal runs collapsed to single spaces), so text a framework splits across several nodes still matches and a driver's surrounding whitespace doesn't cause a miss. Wrap the value in slashes (`/pattern/`) to match a substring by regular expression instead of the whole normalized text. If combined with other element finding fields, the element must match all specified criteria."
|
|
399780
399864
|
},
|
|
399781
399865
|
"selector": {
|
|
399782
399866
|
"type": "string",
|
|
@@ -405007,7 +405091,7 @@
|
|
|
405007
405091
|
},
|
|
405008
405092
|
"elementText": {
|
|
405009
405093
|
"type": "string",
|
|
405010
|
-
"description": "
|
|
405094
|
+
"description": "Display text of the element to wait for. Matched against the element's full visible text with whitespace normalized (leading/trailing trimmed, internal runs collapsed), so framework-fragmented text still matches. Wrap the value in slashes (`/pattern/`) to match a substring by regular expression instead of the whole normalized text."
|
|
405011
405095
|
},
|
|
405012
405096
|
"elementId": {
|
|
405013
405097
|
"type": "string",
|
|
@@ -405539,7 +405623,7 @@
|
|
|
405539
405623
|
},
|
|
405540
405624
|
"elementText": {
|
|
405541
405625
|
"type": "string",
|
|
405542
|
-
"description": "
|
|
405626
|
+
"description": "Display text of the element to wait for. Matched against the element's full visible text with whitespace normalized (leading/trailing trimmed, internal runs collapsed), so framework-fragmented text still matches. Wrap the value in slashes (`/pattern/`) to match a substring by regular expression instead of the whole normalized text."
|
|
405543
405627
|
},
|
|
405544
405628
|
"elementId": {
|
|
405545
405629
|
"type": "string",
|
|
@@ -440531,7 +440615,7 @@
|
|
|
440531
440615
|
},
|
|
440532
440616
|
"elementText": {
|
|
440533
440617
|
"type": "string",
|
|
440534
|
-
"description": "Display text of the element to find. If combined with other element finding fields, the element must match all specified criteria."
|
|
440618
|
+
"description": "Display text of the element to find. Matched against the element's full visible text with whitespace normalized (leading/trailing trimmed, internal runs collapsed to single spaces), so text a framework splits across several nodes still matches and a driver's surrounding whitespace doesn't cause a miss. Wrap the value in slashes (`/pattern/`) to match a substring by regular expression instead of the whole normalized text. If combined with other element finding fields, the element must match all specified criteria."
|
|
440535
440619
|
},
|
|
440536
440620
|
"selector": {
|
|
440537
440621
|
"type": "string",
|
|
@@ -444677,7 +444761,7 @@
|
|
|
444677
444761
|
},
|
|
444678
444762
|
"elementText": {
|
|
444679
444763
|
"type": "string",
|
|
444680
|
-
"description": "Display text of the element to find. If combined with other element finding fields, the element must match all specified criteria."
|
|
444764
|
+
"description": "Display text of the element to find. Matched against the element's full visible text with whitespace normalized (leading/trailing trimmed, internal runs collapsed to single spaces), so text a framework splits across several nodes still matches and a driver's surrounding whitespace doesn't cause a miss. Wrap the value in slashes (`/pattern/`) to match a substring by regular expression instead of the whole normalized text. If combined with other element finding fields, the element must match all specified criteria."
|
|
444681
444765
|
},
|
|
444682
444766
|
"selector": {
|
|
444683
444767
|
"type": "string",
|
|
@@ -449908,7 +449992,7 @@
|
|
|
449908
449992
|
},
|
|
449909
449993
|
"elementText": {
|
|
449910
449994
|
"type": "string",
|
|
449911
|
-
"description": "
|
|
449995
|
+
"description": "Display text of the element to wait for. Matched against the element's full visible text with whitespace normalized (leading/trailing trimmed, internal runs collapsed), so framework-fragmented text still matches. Wrap the value in slashes (`/pattern/`) to match a substring by regular expression instead of the whole normalized text."
|
|
449912
449996
|
},
|
|
449913
449997
|
"elementId": {
|
|
449914
449998
|
"type": "string",
|
|
@@ -450440,7 +450524,7 @@
|
|
|
450440
450524
|
},
|
|
450441
450525
|
"elementText": {
|
|
450442
450526
|
"type": "string",
|
|
450443
|
-
"description": "
|
|
450527
|
+
"description": "Display text of the element to wait for. Matched against the element's full visible text with whitespace normalized (leading/trailing trimmed, internal runs collapsed), so framework-fragmented text still matches. Wrap the value in slashes (`/pattern/`) to match a substring by regular expression instead of the whole normalized text."
|
|
450444
450528
|
},
|
|
450445
450529
|
"elementId": {
|
|
450446
450530
|
"type": "string",
|
|
@@ -487124,7 +487208,7 @@
|
|
|
487124
487208
|
},
|
|
487125
487209
|
"elementText": {
|
|
487126
487210
|
"type": "string",
|
|
487127
|
-
"description": "Display text of the element to find. If combined with other element finding fields, the element must match all specified criteria."
|
|
487211
|
+
"description": "Display text of the element to find. Matched against the element's full visible text with whitespace normalized (leading/trailing trimmed, internal runs collapsed to single spaces), so text a framework splits across several nodes still matches and a driver's surrounding whitespace doesn't cause a miss. Wrap the value in slashes (`/pattern/`) to match a substring by regular expression instead of the whole normalized text. If combined with other element finding fields, the element must match all specified criteria."
|
|
487128
487212
|
},
|
|
487129
487213
|
"selector": {
|
|
487130
487214
|
"type": "string",
|
|
@@ -491270,7 +491354,7 @@
|
|
|
491270
491354
|
},
|
|
491271
491355
|
"elementText": {
|
|
491272
491356
|
"type": "string",
|
|
491273
|
-
"description": "Display text of the element to find. If combined with other element finding fields, the element must match all specified criteria."
|
|
491357
|
+
"description": "Display text of the element to find. Matched against the element's full visible text with whitespace normalized (leading/trailing trimmed, internal runs collapsed to single spaces), so text a framework splits across several nodes still matches and a driver's surrounding whitespace doesn't cause a miss. Wrap the value in slashes (`/pattern/`) to match a substring by regular expression instead of the whole normalized text. If combined with other element finding fields, the element must match all specified criteria."
|
|
491274
491358
|
},
|
|
491275
491359
|
"selector": {
|
|
491276
491360
|
"type": "string",
|
|
@@ -496501,7 +496585,7 @@
|
|
|
496501
496585
|
},
|
|
496502
496586
|
"elementText": {
|
|
496503
496587
|
"type": "string",
|
|
496504
|
-
"description": "
|
|
496588
|
+
"description": "Display text of the element to wait for. Matched against the element's full visible text with whitespace normalized (leading/trailing trimmed, internal runs collapsed), so framework-fragmented text still matches. Wrap the value in slashes (`/pattern/`) to match a substring by regular expression instead of the whole normalized text."
|
|
496505
496589
|
},
|
|
496506
496590
|
"elementId": {
|
|
496507
496591
|
"type": "string",
|
|
@@ -497033,7 +497117,7 @@
|
|
|
497033
497117
|
},
|
|
497034
497118
|
"elementText": {
|
|
497035
497119
|
"type": "string",
|
|
497036
|
-
"description": "
|
|
497120
|
+
"description": "Display text of the element to wait for. Matched against the element's full visible text with whitespace normalized (leading/trailing trimmed, internal runs collapsed), so framework-fragmented text still matches. Wrap the value in slashes (`/pattern/`) to match a substring by regular expression instead of the whole normalized text."
|
|
497037
497121
|
},
|
|
497038
497122
|
"elementId": {
|
|
497039
497123
|
"type": "string",
|
|
@@ -535370,7 +535454,7 @@
|
|
|
535370
535454
|
},
|
|
535371
535455
|
"elementText": {
|
|
535372
535456
|
"type": "string",
|
|
535373
|
-
"description": "Display text of the element to find. If combined with other element finding fields, the element must match all specified criteria."
|
|
535457
|
+
"description": "Display text of the element to find. Matched against the element's full visible text with whitespace normalized (leading/trailing trimmed, internal runs collapsed to single spaces), so text a framework splits across several nodes still matches and a driver's surrounding whitespace doesn't cause a miss. Wrap the value in slashes (`/pattern/`) to match a substring by regular expression instead of the whole normalized text. If combined with other element finding fields, the element must match all specified criteria."
|
|
535374
535458
|
},
|
|
535375
535459
|
"selector": {
|
|
535376
535460
|
"type": "string",
|
|
@@ -539516,7 +539600,7 @@
|
|
|
539516
539600
|
},
|
|
539517
539601
|
"elementText": {
|
|
539518
539602
|
"type": "string",
|
|
539519
|
-
"description": "Display text of the element to find. If combined with other element finding fields, the element must match all specified criteria."
|
|
539603
|
+
"description": "Display text of the element to find. Matched against the element's full visible text with whitespace normalized (leading/trailing trimmed, internal runs collapsed to single spaces), so text a framework splits across several nodes still matches and a driver's surrounding whitespace doesn't cause a miss. Wrap the value in slashes (`/pattern/`) to match a substring by regular expression instead of the whole normalized text. If combined with other element finding fields, the element must match all specified criteria."
|
|
539520
539604
|
},
|
|
539521
539605
|
"selector": {
|
|
539522
539606
|
"type": "string",
|
|
@@ -544747,7 +544831,7 @@
|
|
|
544747
544831
|
},
|
|
544748
544832
|
"elementText": {
|
|
544749
544833
|
"type": "string",
|
|
544750
|
-
"description": "
|
|
544834
|
+
"description": "Display text of the element to wait for. Matched against the element's full visible text with whitespace normalized (leading/trailing trimmed, internal runs collapsed), so framework-fragmented text still matches. Wrap the value in slashes (`/pattern/`) to match a substring by regular expression instead of the whole normalized text."
|
|
544751
544835
|
},
|
|
544752
544836
|
"elementId": {
|
|
544753
544837
|
"type": "string",
|
|
@@ -545279,7 +545363,7 @@
|
|
|
545279
545363
|
},
|
|
545280
545364
|
"elementText": {
|
|
545281
545365
|
"type": "string",
|
|
545282
|
-
"description": "
|
|
545366
|
+
"description": "Display text of the element to wait for. Matched against the element's full visible text with whitespace normalized (leading/trailing trimmed, internal runs collapsed), so framework-fragmented text still matches. Wrap the value in slashes (`/pattern/`) to match a substring by regular expression instead of the whole normalized text."
|
|
545283
545367
|
},
|
|
545284
545368
|
"elementId": {
|
|
545285
545369
|
"type": "string",
|
|
@@ -580271,7 +580355,7 @@
|
|
|
580271
580355
|
},
|
|
580272
580356
|
"elementText": {
|
|
580273
580357
|
"type": "string",
|
|
580274
|
-
"description": "Display text of the element to find. If combined with other element finding fields, the element must match all specified criteria."
|
|
580358
|
+
"description": "Display text of the element to find. Matched against the element's full visible text with whitespace normalized (leading/trailing trimmed, internal runs collapsed to single spaces), so text a framework splits across several nodes still matches and a driver's surrounding whitespace doesn't cause a miss. Wrap the value in slashes (`/pattern/`) to match a substring by regular expression instead of the whole normalized text. If combined with other element finding fields, the element must match all specified criteria."
|
|
580275
580359
|
},
|
|
580276
580360
|
"selector": {
|
|
580277
580361
|
"type": "string",
|
|
@@ -584417,7 +584501,7 @@
|
|
|
584417
584501
|
},
|
|
584418
584502
|
"elementText": {
|
|
584419
584503
|
"type": "string",
|
|
584420
|
-
"description": "Display text of the element to find. If combined with other element finding fields, the element must match all specified criteria."
|
|
584504
|
+
"description": "Display text of the element to find. Matched against the element's full visible text with whitespace normalized (leading/trailing trimmed, internal runs collapsed to single spaces), so text a framework splits across several nodes still matches and a driver's surrounding whitespace doesn't cause a miss. Wrap the value in slashes (`/pattern/`) to match a substring by regular expression instead of the whole normalized text. If combined with other element finding fields, the element must match all specified criteria."
|
|
584421
584505
|
},
|
|
584422
584506
|
"selector": {
|
|
584423
584507
|
"type": "string",
|
|
@@ -589648,7 +589732,7 @@
|
|
|
589648
589732
|
},
|
|
589649
589733
|
"elementText": {
|
|
589650
589734
|
"type": "string",
|
|
589651
|
-
"description": "
|
|
589735
|
+
"description": "Display text of the element to wait for. Matched against the element's full visible text with whitespace normalized (leading/trailing trimmed, internal runs collapsed), so framework-fragmented text still matches. Wrap the value in slashes (`/pattern/`) to match a substring by regular expression instead of the whole normalized text."
|
|
589652
589736
|
},
|
|
589653
589737
|
"elementId": {
|
|
589654
589738
|
"type": "string",
|
|
@@ -590180,7 +590264,7 @@
|
|
|
590180
590264
|
},
|
|
590181
590265
|
"elementText": {
|
|
590182
590266
|
"type": "string",
|
|
590183
|
-
"description": "
|
|
590267
|
+
"description": "Display text of the element to wait for. Matched against the element's full visible text with whitespace normalized (leading/trailing trimmed, internal runs collapsed), so framework-fragmented text still matches. Wrap the value in slashes (`/pattern/`) to match a substring by regular expression instead of the whole normalized text."
|
|
590184
590268
|
},
|
|
590185
590269
|
"elementId": {
|
|
590186
590270
|
"type": "string",
|