doc-detective-common 3.4.1-dev.3 → 3.4.1-dev.5

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.
Files changed (52) hide show
  1. package/dist/schemas/checkLink_v3.schema.json +2 -2
  2. package/dist/schemas/click_v3.schema.json +4 -4
  3. package/dist/schemas/config_v3.schema.json +481 -123
  4. package/dist/schemas/find_v3.schema.json +41 -28
  5. package/dist/schemas/goTo_v3.schema.json +167 -1
  6. package/dist/schemas/httpRequest_v3.schema.json +2 -2
  7. package/dist/schemas/report_v3.schema.json +478 -120
  8. package/dist/schemas/resolvedTests_v3.schema.json +1003 -287
  9. package/dist/schemas/runCode_v3.schema.json +4 -4
  10. package/dist/schemas/runShell_v3.schema.json +4 -4
  11. package/dist/schemas/screenshot_v3.schema.json +6 -6
  12. package/dist/schemas/spec_v3.schema.json +478 -120
  13. package/dist/schemas/step_v3.schema.json +238 -59
  14. package/dist/schemas/test_v3.schema.json +477 -119
  15. package/dist/schemas/type_v3.schema.json +8 -8
  16. package/package.json +2 -2
  17. package/src/schemas/build/checkLink_v3.schema.json +1 -1
  18. package/src/schemas/build/click_v3.schema.json +2 -2
  19. package/src/schemas/build/find_v3.schema.json +15 -2
  20. package/src/schemas/build/httpRequest_v3.schema.json +1 -1
  21. package/src/schemas/build/runCode_v3.schema.json +2 -2
  22. package/src/schemas/build/runShell_v3.schema.json +2 -2
  23. package/src/schemas/build/screenshot_v3.schema.json +2 -2
  24. package/src/schemas/build/test_v3.schema.json +1 -1
  25. package/src/schemas/build/type_v3.schema.json +3 -3
  26. package/src/schemas/output_schemas/checkLink_v3.schema.json +2 -2
  27. package/src/schemas/output_schemas/click_v3.schema.json +4 -4
  28. package/src/schemas/output_schemas/config_v3.schema.json +481 -123
  29. package/src/schemas/output_schemas/find_v3.schema.json +41 -28
  30. package/src/schemas/output_schemas/goTo_v3.schema.json +167 -1
  31. package/src/schemas/output_schemas/httpRequest_v3.schema.json +2 -2
  32. package/src/schemas/output_schemas/report_v3.schema.json +478 -120
  33. package/src/schemas/output_schemas/resolvedTests_v3.schema.json +1003 -287
  34. package/src/schemas/output_schemas/runCode_v3.schema.json +4 -4
  35. package/src/schemas/output_schemas/runShell_v3.schema.json +4 -4
  36. package/src/schemas/output_schemas/screenshot_v3.schema.json +6 -6
  37. package/src/schemas/output_schemas/spec_v3.schema.json +478 -120
  38. package/src/schemas/output_schemas/step_v3.schema.json +238 -59
  39. package/src/schemas/output_schemas/test_v3.schema.json +477 -119
  40. package/src/schemas/output_schemas/type_v3.schema.json +8 -8
  41. package/src/schemas/schemas.json +3588 -1082
  42. package/src/schemas/src_schemas/checkLink_v3.schema.json +1 -1
  43. package/src/schemas/src_schemas/click_v3.schema.json +2 -2
  44. package/src/schemas/src_schemas/find_v3.schema.json +12 -2
  45. package/src/schemas/src_schemas/goTo_v3.schema.json +109 -14
  46. package/src/schemas/src_schemas/httpRequest_v3.schema.json +1 -1
  47. package/src/schemas/src_schemas/runCode_v3.schema.json +2 -2
  48. package/src/schemas/src_schemas/runShell_v3.schema.json +2 -2
  49. package/src/schemas/src_schemas/screenshot_v3.schema.json +2 -2
  50. package/src/schemas/src_schemas/test_v3.schema.json +1 -1
  51. package/src/schemas/src_schemas/type_v3.schema.json +3 -3
  52. package/src/schemas/build/goTo_v3.schema.json +0 -63
@@ -227,7 +227,7 @@
227
227
  {
228
228
  "type": "array",
229
229
  "items": {
230
- "oneOf": [
230
+ "anyOf": [
231
231
  {
232
232
  "type": "integer"
233
233
  }
@@ -290,7 +290,7 @@
290
290
  {
291
291
  "type": "array",
292
292
  "items": {
293
- "oneOf": [
293
+ "anyOf": [
294
294
  {
295
295
  "type": "integer"
296
296
  }
@@ -474,7 +474,7 @@
474
474
  "description": "data-testid attribute of the element to click. Supports exact match or regex pattern using /pattern/ syntax."
475
475
  },
476
476
  "elementClass": {
477
- "oneOf": [
477
+ "anyOf": [
478
478
  {
479
479
  "type": "string"
480
480
  },
@@ -491,7 +491,7 @@
491
491
  "type": "object",
492
492
  "description": "Object of attribute key-value pairs that the element must have. Values can be strings (supporting /pattern/ regex), numbers, or booleans. Boolean true matches attribute presence, false matches absence.",
493
493
  "additionalProperties": {
494
- "oneOf": [
494
+ "anyOf": [
495
495
  {
496
496
  "type": "string"
497
497
  },
@@ -597,7 +597,7 @@
597
597
  "description": "data-testid attribute of the element to click. Supports exact match or regex pattern using /pattern/ syntax."
598
598
  },
599
599
  "elementClass": {
600
- "oneOf": [
600
+ "anyOf": [
601
601
  {
602
602
  "type": "string"
603
603
  },
@@ -614,7 +614,7 @@
614
614
  "type": "object",
615
615
  "description": "Object of attribute key-value pairs that the element must have. Values can be strings (supporting /pattern/ regex), numbers, or booleans. Boolean true matches attribute presence, false matches absence.",
616
616
  "additionalProperties": {
617
- "oneOf": [
617
+ "anyOf": [
618
618
  {
619
619
  "type": "string"
620
620
  },
@@ -789,7 +789,7 @@
789
789
  "description": "data-testid attribute of the element to find. Supports exact match or regex pattern using /pattern/ syntax."
790
790
  },
791
791
  "elementClass": {
792
- "oneOf": [
792
+ "anyOf": [
793
793
  {
794
794
  "type": "string"
795
795
  },
@@ -806,7 +806,7 @@
806
806
  "type": "object",
807
807
  "description": "Object of attribute key-value pairs that the element must have. Values can be strings (supporting /pattern/ regex), numbers, or booleans. Boolean true matches attribute presence, false matches absence.",
808
808
  "additionalProperties": {
809
- "oneOf": [
809
+ "anyOf": [
810
810
  {
811
811
  "type": "string"
812
812
  },
@@ -913,7 +913,7 @@
913
913
  "description": "data-testid attribute of the element to click. Supports exact match or regex pattern using /pattern/ syntax."
914
914
  },
915
915
  "elementClass": {
916
- "oneOf": [
916
+ "anyOf": [
917
917
  {
918
918
  "type": "string"
919
919
  },
@@ -930,7 +930,7 @@
930
930
  "type": "object",
931
931
  "description": "Object of attribute key-value pairs that the element must have. Values can be strings (supporting /pattern/ regex), numbers, or booleans. Boolean true matches attribute presence, false matches absence.",
932
932
  "additionalProperties": {
933
- "oneOf": [
933
+ "anyOf": [
934
934
  {
935
935
  "type": "string"
936
936
  },
@@ -1036,7 +1036,7 @@
1036
1036
  "description": "data-testid attribute of the element to click. Supports exact match or regex pattern using /pattern/ syntax."
1037
1037
  },
1038
1038
  "elementClass": {
1039
- "oneOf": [
1039
+ "anyOf": [
1040
1040
  {
1041
1041
  "type": "string"
1042
1042
  },
@@ -1053,7 +1053,7 @@
1053
1053
  "type": "object",
1054
1054
  "description": "Object of attribute key-value pairs that the element must have. Values can be strings (supporting /pattern/ regex), numbers, or booleans. Boolean true matches attribute presence, false matches absence.",
1055
1055
  "additionalProperties": {
1056
- "oneOf": [
1056
+ "anyOf": [
1057
1057
  {
1058
1058
  "type": "string"
1059
1059
  },
@@ -1123,7 +1123,7 @@
1123
1123
  {
1124
1124
  "type": "array",
1125
1125
  "items": {
1126
- "oneOf": [
1126
+ "anyOf": [
1127
1127
  {
1128
1128
  "type": "string"
1129
1129
  }
@@ -1146,7 +1146,7 @@
1146
1146
  {
1147
1147
  "type": "array",
1148
1148
  "items": {
1149
- "oneOf": [
1149
+ "anyOf": [
1150
1150
  {
1151
1151
  "type": "string"
1152
1152
  }
@@ -1177,7 +1177,7 @@
1177
1177
  "description": "data-testid attribute of the element to find. Supports exact match or regex pattern using /pattern/ syntax."
1178
1178
  },
1179
1179
  "elementClass": {
1180
- "oneOf": [
1180
+ "anyOf": [
1181
1181
  {
1182
1182
  "type": "string"
1183
1183
  },
@@ -1194,7 +1194,7 @@
1194
1194
  "type": "object",
1195
1195
  "description": "Object of attribute key-value pairs that the element must have. Values can be strings (supporting /pattern/ regex), numbers, or booleans. Boolean true matches attribute presence, false matches absence.",
1196
1196
  "additionalProperties": {
1197
- "oneOf": [
1197
+ "anyOf": [
1198
1198
  {
1199
1199
  "type": "string"
1200
1200
  },
@@ -1230,7 +1230,7 @@
1230
1230
  {
1231
1231
  "type": "array",
1232
1232
  "items": {
1233
- "oneOf": [
1233
+ "anyOf": [
1234
1234
  {
1235
1235
  "type": "string"
1236
1236
  }
@@ -1253,7 +1253,7 @@
1253
1253
  {
1254
1254
  "type": "array",
1255
1255
  "items": {
1256
- "oneOf": [
1256
+ "anyOf": [
1257
1257
  {
1258
1258
  "type": "string"
1259
1259
  }
@@ -1284,7 +1284,7 @@
1284
1284
  "description": "data-testid attribute of the element to find. Supports exact match or regex pattern using /pattern/ syntax."
1285
1285
  },
1286
1286
  "elementClass": {
1287
- "oneOf": [
1287
+ "anyOf": [
1288
1288
  {
1289
1289
  "type": "string"
1290
1290
  },
@@ -1301,7 +1301,7 @@
1301
1301
  "type": "object",
1302
1302
  "description": "Object of attribute key-value pairs that the element must have. Values can be strings (supporting /pattern/ regex), numbers, or booleans. Boolean true matches attribute presence, false matches absence.",
1303
1303
  "additionalProperties": {
1304
- "oneOf": [
1304
+ "anyOf": [
1305
1305
  {
1306
1306
  "type": "string"
1307
1307
  },
@@ -1438,7 +1438,7 @@
1438
1438
  "description": "data-testid attribute of the element to find. Supports exact match or regex pattern using /pattern/ syntax."
1439
1439
  },
1440
1440
  "elementClass": {
1441
- "oneOf": [
1441
+ "anyOf": [
1442
1442
  {
1443
1443
  "type": "string"
1444
1444
  },
@@ -1455,7 +1455,7 @@
1455
1455
  "type": "object",
1456
1456
  "description": "Object of attribute key-value pairs that the element must have. Values can be strings (supporting /pattern/ regex), numbers, or booleans. Boolean true matches attribute presence, false matches absence.",
1457
1457
  "additionalProperties": {
1458
- "oneOf": [
1458
+ "anyOf": [
1459
1459
  {
1460
1460
  "type": "string"
1461
1461
  },
@@ -1562,7 +1562,7 @@
1562
1562
  "description": "data-testid attribute of the element to click. Supports exact match or regex pattern using /pattern/ syntax."
1563
1563
  },
1564
1564
  "elementClass": {
1565
- "oneOf": [
1565
+ "anyOf": [
1566
1566
  {
1567
1567
  "type": "string"
1568
1568
  },
@@ -1579,7 +1579,7 @@
1579
1579
  "type": "object",
1580
1580
  "description": "Object of attribute key-value pairs that the element must have. Values can be strings (supporting /pattern/ regex), numbers, or booleans. Boolean true matches attribute presence, false matches absence.",
1581
1581
  "additionalProperties": {
1582
- "oneOf": [
1582
+ "anyOf": [
1583
1583
  {
1584
1584
  "type": "string"
1585
1585
  },
@@ -1685,7 +1685,7 @@
1685
1685
  "description": "data-testid attribute of the element to click. Supports exact match or regex pattern using /pattern/ syntax."
1686
1686
  },
1687
1687
  "elementClass": {
1688
- "oneOf": [
1688
+ "anyOf": [
1689
1689
  {
1690
1690
  "type": "string"
1691
1691
  },
@@ -1702,7 +1702,7 @@
1702
1702
  "type": "object",
1703
1703
  "description": "Object of attribute key-value pairs that the element must have. Values can be strings (supporting /pattern/ regex), numbers, or booleans. Boolean true matches attribute presence, false matches absence.",
1704
1704
  "additionalProperties": {
1705
- "oneOf": [
1705
+ "anyOf": [
1706
1706
  {
1707
1707
  "type": "string"
1708
1708
  },
@@ -1772,7 +1772,7 @@
1772
1772
  {
1773
1773
  "type": "array",
1774
1774
  "items": {
1775
- "oneOf": [
1775
+ "anyOf": [
1776
1776
  {
1777
1777
  "type": "string"
1778
1778
  }
@@ -1795,7 +1795,7 @@
1795
1795
  {
1796
1796
  "type": "array",
1797
1797
  "items": {
1798
- "oneOf": [
1798
+ "anyOf": [
1799
1799
  {
1800
1800
  "type": "string"
1801
1801
  }
@@ -1826,7 +1826,7 @@
1826
1826
  "description": "data-testid attribute of the element to find. Supports exact match or regex pattern using /pattern/ syntax."
1827
1827
  },
1828
1828
  "elementClass": {
1829
- "oneOf": [
1829
+ "anyOf": [
1830
1830
  {
1831
1831
  "type": "string"
1832
1832
  },
@@ -1843,7 +1843,7 @@
1843
1843
  "type": "object",
1844
1844
  "description": "Object of attribute key-value pairs that the element must have. Values can be strings (supporting /pattern/ regex), numbers, or booleans. Boolean true matches attribute presence, false matches absence.",
1845
1845
  "additionalProperties": {
1846
- "oneOf": [
1846
+ "anyOf": [
1847
1847
  {
1848
1848
  "type": "string"
1849
1849
  },
@@ -1879,7 +1879,7 @@
1879
1879
  {
1880
1880
  "type": "array",
1881
1881
  "items": {
1882
- "oneOf": [
1882
+ "anyOf": [
1883
1883
  {
1884
1884
  "type": "string"
1885
1885
  }
@@ -1902,7 +1902,7 @@
1902
1902
  {
1903
1903
  "type": "array",
1904
1904
  "items": {
1905
- "oneOf": [
1905
+ "anyOf": [
1906
1906
  {
1907
1907
  "type": "string"
1908
1908
  }
@@ -1933,7 +1933,7 @@
1933
1933
  "description": "data-testid attribute of the element to find. Supports exact match or regex pattern using /pattern/ syntax."
1934
1934
  },
1935
1935
  "elementClass": {
1936
- "oneOf": [
1936
+ "anyOf": [
1937
1937
  {
1938
1938
  "type": "string"
1939
1939
  },
@@ -1950,7 +1950,7 @@
1950
1950
  "type": "object",
1951
1951
  "description": "Object of attribute key-value pairs that the element must have. Values can be strings (supporting /pattern/ regex), numbers, or booleans. Boolean true matches attribute presence, false matches absence.",
1952
1952
  "additionalProperties": {
1953
- "oneOf": [
1953
+ "anyOf": [
1954
1954
  {
1955
1955
  "type": "string"
1956
1956
  },
@@ -2053,6 +2053,19 @@
2053
2053
  ],
2054
2054
  "inputDelay": 100
2055
2055
  }
2056
+ },
2057
+ {
2058
+ "elementId": "/^user-[0-9]+$/",
2059
+ "elementClass": [
2060
+ "admin",
2061
+ "/^level-[1-5]$/"
2062
+ ],
2063
+ "elementAttribute": {
2064
+ "data-active": true,
2065
+ "data-score": "/^[0-9]+$/"
2066
+ },
2067
+ "timeout": 8000,
2068
+ "moveTo": false
2056
2069
  }
2057
2070
  ]
2058
2071
  }
@@ -2162,6 +2175,72 @@
2162
2175
  "transform": [
2163
2176
  "trim"
2164
2177
  ]
2178
+ },
2179
+ "timeout": {
2180
+ "type": "integer",
2181
+ "description": "Maximum time in milliseconds to wait for the page to be ready. If exceeded, the goTo action fails.",
2182
+ "default": 30000,
2183
+ "minimum": 0
2184
+ },
2185
+ "waitUntil": {
2186
+ "type": "object",
2187
+ "description": "Configuration for waiting conditions after navigation.",
2188
+ "additionalProperties": false,
2189
+ "properties": {
2190
+ "networkIdleTime": {
2191
+ "description": "Wait for network activity to be idle (no new requests) for this duration in milliseconds. Set to `null` to skip this check.",
2192
+ "anyOf": [
2193
+ {
2194
+ "type": "integer",
2195
+ "minimum": 0
2196
+ },
2197
+ {
2198
+ "type": "null"
2199
+ }
2200
+ ],
2201
+ "default": 500
2202
+ },
2203
+ "domIdleTime": {
2204
+ "description": "Wait for DOM mutations to stop for this duration in milliseconds. Set to `null` to skip this check.",
2205
+ "anyOf": [
2206
+ {
2207
+ "type": "integer",
2208
+ "minimum": 0
2209
+ },
2210
+ {
2211
+ "type": "null"
2212
+ }
2213
+ ],
2214
+ "default": 1000
2215
+ },
2216
+ "find": {
2217
+ "type": "object",
2218
+ "description": "Wait for a specific element to be present in the DOM. At least one of selector or elementText must be specified.",
2219
+ "additionalProperties": false,
2220
+ "anyOf": [
2221
+ {
2222
+ "required": [
2223
+ "selector"
2224
+ ]
2225
+ },
2226
+ {
2227
+ "required": [
2228
+ "elementText"
2229
+ ]
2230
+ }
2231
+ ],
2232
+ "properties": {
2233
+ "selector": {
2234
+ "type": "string",
2235
+ "description": "CSS selector for the element to wait for."
2236
+ },
2237
+ "elementText": {
2238
+ "type": "string",
2239
+ "description": "Text content the element must contain."
2240
+ }
2241
+ }
2242
+ }
2243
+ }
2165
2244
  }
2166
2245
  },
2167
2246
  "title": "Go to URL (detailed)"
@@ -2200,6 +2279,72 @@
2200
2279
  "transform": [
2201
2280
  "trim"
2202
2281
  ]
2282
+ },
2283
+ "timeout": {
2284
+ "type": "integer",
2285
+ "description": "Maximum time in milliseconds to wait for the page to be ready. If exceeded, the goTo action fails.",
2286
+ "default": 30000,
2287
+ "minimum": 0
2288
+ },
2289
+ "waitUntil": {
2290
+ "type": "object",
2291
+ "description": "Configuration for waiting conditions after navigation.",
2292
+ "additionalProperties": false,
2293
+ "properties": {
2294
+ "networkIdleTime": {
2295
+ "description": "Wait for network activity to be idle (no new requests) for this duration in milliseconds. Set to `null` to skip this check.",
2296
+ "anyOf": [
2297
+ {
2298
+ "type": "integer",
2299
+ "minimum": 0
2300
+ },
2301
+ {
2302
+ "type": "null"
2303
+ }
2304
+ ],
2305
+ "default": 500
2306
+ },
2307
+ "domIdleTime": {
2308
+ "description": "Wait for DOM mutations to stop for this duration in milliseconds. Set to `null` to skip this check.",
2309
+ "anyOf": [
2310
+ {
2311
+ "type": "integer",
2312
+ "minimum": 0
2313
+ },
2314
+ {
2315
+ "type": "null"
2316
+ }
2317
+ ],
2318
+ "default": 1000
2319
+ },
2320
+ "find": {
2321
+ "type": "object",
2322
+ "description": "Wait for a specific element to be present in the DOM. At least one of selector or elementText must be specified.",
2323
+ "additionalProperties": false,
2324
+ "anyOf": [
2325
+ {
2326
+ "required": [
2327
+ "selector"
2328
+ ]
2329
+ },
2330
+ {
2331
+ "required": [
2332
+ "elementText"
2333
+ ]
2334
+ }
2335
+ ],
2336
+ "properties": {
2337
+ "selector": {
2338
+ "type": "string",
2339
+ "description": "CSS selector for the element to wait for."
2340
+ },
2341
+ "elementText": {
2342
+ "type": "string",
2343
+ "description": "Text content the element must contain."
2344
+ }
2345
+ }
2346
+ }
2347
+ }
2203
2348
  }
2204
2349
  },
2205
2350
  "title": "Go to URL (detailed)"
@@ -2214,7 +2359,41 @@
2214
2359
  },
2215
2360
  {
2216
2361
  "url": "/search",
2217
- "origin": "www.google.com"
2362
+ "origin": "https://www.google.com"
2363
+ },
2364
+ {
2365
+ "url": "https://www.example.com",
2366
+ "waitUntil": {
2367
+ "networkIdleTime": 500
2368
+ }
2369
+ },
2370
+ {
2371
+ "url": "https://www.example.com/dashboard",
2372
+ "waitUntil": {
2373
+ "find": {
2374
+ "selector": "[data-testid='dashboard-loaded']"
2375
+ }
2376
+ }
2377
+ },
2378
+ {
2379
+ "url": "https://www.example.com/app",
2380
+ "timeout": 60000,
2381
+ "waitUntil": {
2382
+ "networkIdleTime": 500,
2383
+ "domIdleTime": 1000,
2384
+ "find": {
2385
+ "selector": ".main-content",
2386
+ "elementText": "Dashboard"
2387
+ }
2388
+ }
2389
+ },
2390
+ {
2391
+ "url": "https://www.example.com/status",
2392
+ "waitUntil": {
2393
+ "find": {
2394
+ "elementText": "System operational"
2395
+ }
2396
+ }
2218
2397
  }
2219
2398
  ]
2220
2399
  }
@@ -2522,7 +2701,7 @@
2522
2701
  "description": "Accepted status codes. If the specified URL returns a code other than what is specified here, the action fails.",
2523
2702
  "type": "array",
2524
2703
  "items": {
2525
- "oneOf": [
2704
+ "anyOf": [
2526
2705
  {
2527
2706
  "type": "integer"
2528
2707
  }
@@ -2921,7 +3100,7 @@
2921
3100
  "description": "Accepted status codes. If the specified URL returns a code other than what is specified here, the action fails.",
2922
3101
  "type": "array",
2923
3102
  "items": {
2924
- "oneOf": [
3103
+ "anyOf": [
2925
3104
  {
2926
3105
  "type": "integer"
2927
3106
  }
@@ -3382,7 +3561,7 @@
3382
3561
  "type": "array",
3383
3562
  "description": "Arguments for the command.",
3384
3563
  "items": {
3385
- "oneOf": [
3564
+ "anyOf": [
3386
3565
  {
3387
3566
  "type": "string"
3388
3567
  }
@@ -3399,7 +3578,7 @@
3399
3578
  "type": "array",
3400
3579
  "description": "Expected exit codes of the command. If the command's actual exit code isn't in this list, the step fails.",
3401
3580
  "items": {
3402
- "oneOf": [
3581
+ "anyOf": [
3403
3582
  {
3404
3583
  "type": "integer"
3405
3584
  }
@@ -3472,7 +3651,7 @@
3472
3651
  "type": "array",
3473
3652
  "description": "Arguments for the command.",
3474
3653
  "items": {
3475
- "oneOf": [
3654
+ "anyOf": [
3476
3655
  {
3477
3656
  "type": "string"
3478
3657
  }
@@ -3489,7 +3668,7 @@
3489
3668
  "type": "array",
3490
3669
  "description": "Expected exit codes of the command. If the command's actual exit code isn't in this list, the step fails.",
3491
3670
  "items": {
3492
- "oneOf": [
3671
+ "anyOf": [
3493
3672
  {
3494
3673
  "type": "integer"
3495
3674
  }
@@ -3690,7 +3869,7 @@
3690
3869
  "type": "array",
3691
3870
  "description": "Arguments for the command.",
3692
3871
  "items": {
3693
- "oneOf": [
3872
+ "anyOf": [
3694
3873
  {
3695
3874
  "type": "string"
3696
3875
  }
@@ -3707,7 +3886,7 @@
3707
3886
  "type": "array",
3708
3887
  "description": "Expected exit codes of the command. If the command's actual exit code isn't in this list, the step fails.",
3709
3888
  "items": {
3710
- "oneOf": [
3889
+ "anyOf": [
3711
3890
  {
3712
3891
  "type": "integer"
3713
3892
  }
@@ -3781,7 +3960,7 @@
3781
3960
  "type": "array",
3782
3961
  "description": "Arguments for the command.",
3783
3962
  "items": {
3784
- "oneOf": [
3963
+ "anyOf": [
3785
3964
  {
3786
3965
  "type": "string"
3787
3966
  }
@@ -3798,7 +3977,7 @@
3798
3977
  "type": "array",
3799
3978
  "description": "Expected exit codes of the command. If the command's actual exit code isn't in this list, the step fails.",
3800
3979
  "items": {
3801
- "oneOf": [
3980
+ "anyOf": [
3802
3981
  {
3803
3982
  "type": "integer"
3804
3983
  }
@@ -3969,7 +4148,7 @@
3969
4148
  {
3970
4149
  "type": "array",
3971
4150
  "items": {
3972
- "oneOf": [
4151
+ "anyOf": [
3973
4152
  {
3974
4153
  "type": "string"
3975
4154
  }
@@ -3992,7 +4171,7 @@
3992
4171
  {
3993
4172
  "type": "array",
3994
4173
  "items": {
3995
- "oneOf": [
4174
+ "anyOf": [
3996
4175
  {
3997
4176
  "type": "string"
3998
4177
  }
@@ -4023,7 +4202,7 @@
4023
4202
  "description": "data-testid attribute of the element to find. Supports exact match or regex pattern using /pattern/ syntax."
4024
4203
  },
4025
4204
  "elementClass": {
4026
- "oneOf": [
4205
+ "anyOf": [
4027
4206
  {
4028
4207
  "type": "string"
4029
4208
  },
@@ -4040,7 +4219,7 @@
4040
4219
  "type": "object",
4041
4220
  "description": "Object of attribute key-value pairs that the element must have. Values can be strings (supporting /pattern/ regex), numbers, or booleans. Boolean true matches attribute presence, false matches absence.",
4042
4221
  "additionalProperties": {
4043
- "oneOf": [
4222
+ "anyOf": [
4044
4223
  {
4045
4224
  "type": "string"
4046
4225
  },
@@ -4076,7 +4255,7 @@
4076
4255
  {
4077
4256
  "type": "array",
4078
4257
  "items": {
4079
- "oneOf": [
4258
+ "anyOf": [
4080
4259
  {
4081
4260
  "type": "string"
4082
4261
  }
@@ -4099,7 +4278,7 @@
4099
4278
  {
4100
4279
  "type": "array",
4101
4280
  "items": {
4102
- "oneOf": [
4281
+ "anyOf": [
4103
4282
  {
4104
4283
  "type": "string"
4105
4284
  }
@@ -4130,7 +4309,7 @@
4130
4309
  "description": "data-testid attribute of the element to find. Supports exact match or regex pattern using /pattern/ syntax."
4131
4310
  },
4132
4311
  "elementClass": {
4133
- "oneOf": [
4312
+ "anyOf": [
4134
4313
  {
4135
4314
  "type": "string"
4136
4315
  },
@@ -4147,7 +4326,7 @@
4147
4326
  "type": "object",
4148
4327
  "description": "Object of attribute key-value pairs that the element must have. Values can be strings (supporting /pattern/ regex), numbers, or booleans. Boolean true matches attribute presence, false matches absence.",
4149
4328
  "additionalProperties": {
4150
- "oneOf": [
4329
+ "anyOf": [
4151
4330
  {
4152
4331
  "type": "string"
4153
4332
  },
@@ -4387,7 +4566,7 @@
4387
4566
  "description": "data-testid attribute of the element to find. Supports exact match or regex pattern using /pattern/ syntax."
4388
4567
  },
4389
4568
  "elementClass": {
4390
- "oneOf": [
4569
+ "anyOf": [
4391
4570
  {
4392
4571
  "type": "string"
4393
4572
  },
@@ -4404,7 +4583,7 @@
4404
4583
  "type": "object",
4405
4584
  "description": "Object of attribute key-value pairs that the element must have. Values can be strings (supporting /pattern/ regex), numbers, or booleans. Boolean true matches attribute presence, false matches absence.",
4406
4585
  "additionalProperties": {
4407
- "oneOf": [
4586
+ "anyOf": [
4408
4587
  {
4409
4588
  "type": "string"
4410
4589
  },
@@ -4583,7 +4762,7 @@
4583
4762
  "description": "data-testid attribute of the element to find. Supports exact match or regex pattern using /pattern/ syntax."
4584
4763
  },
4585
4764
  "elementClass": {
4586
- "oneOf": [
4765
+ "anyOf": [
4587
4766
  {
4588
4767
  "type": "string"
4589
4768
  },
@@ -4600,7 +4779,7 @@
4600
4779
  "type": "object",
4601
4780
  "description": "Object of attribute key-value pairs that the element must have. Values can be strings (supporting /pattern/ regex), numbers, or booleans. Boolean true matches attribute presence, false matches absence.",
4602
4781
  "additionalProperties": {
4603
- "oneOf": [
4782
+ "anyOf": [
4604
4783
  {
4605
4784
  "type": "string"
4606
4785
  },
@@ -4718,7 +4897,7 @@
4718
4897
  "description": "data-testid attribute of the element to find. Supports exact match or regex pattern using /pattern/ syntax."
4719
4898
  },
4720
4899
  "elementClass": {
4721
- "oneOf": [
4900
+ "anyOf": [
4722
4901
  {
4723
4902
  "type": "string"
4724
4903
  },
@@ -4735,7 +4914,7 @@
4735
4914
  "type": "object",
4736
4915
  "description": "Object of attribute key-value pairs that the element must have. Values can be strings (supporting /pattern/ regex), numbers, or booleans. Boolean true matches attribute presence, false matches absence.",
4737
4916
  "additionalProperties": {
4738
- "oneOf": [
4917
+ "anyOf": [
4739
4918
  {
4740
4919
  "type": "string"
4741
4920
  },