doc-detective-common 3.4.1-dev.3 → 3.4.1-dev.4
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/schemas/checkLink_v3.schema.json +2 -2
- package/dist/schemas/click_v3.schema.json +4 -4
- package/dist/schemas/config_v3.schema.json +147 -121
- package/dist/schemas/find_v3.schema.json +41 -28
- package/dist/schemas/httpRequest_v3.schema.json +2 -2
- package/dist/schemas/report_v3.schema.json +144 -118
- package/dist/schemas/resolvedTests_v3.schema.json +291 -239
- package/dist/schemas/runCode_v3.schema.json +4 -4
- package/dist/schemas/runShell_v3.schema.json +4 -4
- package/dist/schemas/screenshot_v3.schema.json +6 -6
- package/dist/schemas/spec_v3.schema.json +144 -118
- package/dist/schemas/step_v3.schema.json +71 -58
- package/dist/schemas/test_v3.schema.json +143 -117
- package/dist/schemas/type_v3.schema.json +8 -8
- package/package.json +1 -1
- package/src/schemas/build/checkLink_v3.schema.json +1 -1
- package/src/schemas/build/click_v3.schema.json +2 -2
- package/src/schemas/build/find_v3.schema.json +15 -2
- package/src/schemas/build/httpRequest_v3.schema.json +1 -1
- package/src/schemas/build/runCode_v3.schema.json +2 -2
- package/src/schemas/build/runShell_v3.schema.json +2 -2
- package/src/schemas/build/screenshot_v3.schema.json +2 -2
- package/src/schemas/build/test_v3.schema.json +1 -1
- package/src/schemas/build/type_v3.schema.json +3 -3
- package/src/schemas/output_schemas/checkLink_v3.schema.json +2 -2
- package/src/schemas/output_schemas/click_v3.schema.json +4 -4
- package/src/schemas/output_schemas/config_v3.schema.json +147 -121
- package/src/schemas/output_schemas/find_v3.schema.json +41 -28
- package/src/schemas/output_schemas/httpRequest_v3.schema.json +2 -2
- package/src/schemas/output_schemas/report_v3.schema.json +144 -118
- package/src/schemas/output_schemas/resolvedTests_v3.schema.json +291 -239
- package/src/schemas/output_schemas/runCode_v3.schema.json +4 -4
- package/src/schemas/output_schemas/runShell_v3.schema.json +4 -4
- package/src/schemas/output_schemas/screenshot_v3.schema.json +6 -6
- package/src/schemas/output_schemas/spec_v3.schema.json +144 -118
- package/src/schemas/output_schemas/step_v3.schema.json +71 -58
- package/src/schemas/output_schemas/test_v3.schema.json +143 -117
- package/src/schemas/output_schemas/type_v3.schema.json +8 -8
- package/src/schemas/schemas.json +1011 -829
- package/src/schemas/src_schemas/checkLink_v3.schema.json +1 -1
- package/src/schemas/src_schemas/click_v3.schema.json +2 -2
- package/src/schemas/src_schemas/find_v3.schema.json +12 -2
- package/src/schemas/src_schemas/httpRequest_v3.schema.json +1 -1
- package/src/schemas/src_schemas/runCode_v3.schema.json +2 -2
- package/src/schemas/src_schemas/runShell_v3.schema.json +2 -2
- package/src/schemas/src_schemas/screenshot_v3.schema.json +2 -2
- package/src/schemas/src_schemas/test_v3.schema.json +1 -1
- package/src/schemas/src_schemas/type_v3.schema.json +3 -3
|
@@ -25,7 +25,7 @@
|
|
|
25
25
|
"type": "array",
|
|
26
26
|
"description": "Contexts to run the test in. Overrides contexts defined at the config and spec levels.",
|
|
27
27
|
"items": {
|
|
28
|
-
"
|
|
28
|
+
"anyOf": [
|
|
29
29
|
{
|
|
30
30
|
"$schema": "http://json-schema.org/draft-07/schema#",
|
|
31
31
|
"title": "context",
|
|
@@ -826,7 +826,7 @@
|
|
|
826
826
|
{
|
|
827
827
|
"type": "array",
|
|
828
828
|
"items": {
|
|
829
|
-
"
|
|
829
|
+
"anyOf": [
|
|
830
830
|
{
|
|
831
831
|
"type": "integer"
|
|
832
832
|
}
|
|
@@ -889,7 +889,7 @@
|
|
|
889
889
|
{
|
|
890
890
|
"type": "array",
|
|
891
891
|
"items": {
|
|
892
|
-
"
|
|
892
|
+
"anyOf": [
|
|
893
893
|
{
|
|
894
894
|
"type": "integer"
|
|
895
895
|
}
|
|
@@ -1073,7 +1073,7 @@
|
|
|
1073
1073
|
"description": "data-testid attribute of the element to click. Supports exact match or regex pattern using /pattern/ syntax."
|
|
1074
1074
|
},
|
|
1075
1075
|
"elementClass": {
|
|
1076
|
-
"
|
|
1076
|
+
"anyOf": [
|
|
1077
1077
|
{
|
|
1078
1078
|
"type": "string"
|
|
1079
1079
|
},
|
|
@@ -1090,7 +1090,7 @@
|
|
|
1090
1090
|
"type": "object",
|
|
1091
1091
|
"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.",
|
|
1092
1092
|
"additionalProperties": {
|
|
1093
|
-
"
|
|
1093
|
+
"anyOf": [
|
|
1094
1094
|
{
|
|
1095
1095
|
"type": "string"
|
|
1096
1096
|
},
|
|
@@ -1196,7 +1196,7 @@
|
|
|
1196
1196
|
"description": "data-testid attribute of the element to click. Supports exact match or regex pattern using /pattern/ syntax."
|
|
1197
1197
|
},
|
|
1198
1198
|
"elementClass": {
|
|
1199
|
-
"
|
|
1199
|
+
"anyOf": [
|
|
1200
1200
|
{
|
|
1201
1201
|
"type": "string"
|
|
1202
1202
|
},
|
|
@@ -1213,7 +1213,7 @@
|
|
|
1213
1213
|
"type": "object",
|
|
1214
1214
|
"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.",
|
|
1215
1215
|
"additionalProperties": {
|
|
1216
|
-
"
|
|
1216
|
+
"anyOf": [
|
|
1217
1217
|
{
|
|
1218
1218
|
"type": "string"
|
|
1219
1219
|
},
|
|
@@ -1388,7 +1388,7 @@
|
|
|
1388
1388
|
"description": "data-testid attribute of the element to find. Supports exact match or regex pattern using /pattern/ syntax."
|
|
1389
1389
|
},
|
|
1390
1390
|
"elementClass": {
|
|
1391
|
-
"
|
|
1391
|
+
"anyOf": [
|
|
1392
1392
|
{
|
|
1393
1393
|
"type": "string"
|
|
1394
1394
|
},
|
|
@@ -1405,7 +1405,7 @@
|
|
|
1405
1405
|
"type": "object",
|
|
1406
1406
|
"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.",
|
|
1407
1407
|
"additionalProperties": {
|
|
1408
|
-
"
|
|
1408
|
+
"anyOf": [
|
|
1409
1409
|
{
|
|
1410
1410
|
"type": "string"
|
|
1411
1411
|
},
|
|
@@ -1512,7 +1512,7 @@
|
|
|
1512
1512
|
"description": "data-testid attribute of the element to click. Supports exact match or regex pattern using /pattern/ syntax."
|
|
1513
1513
|
},
|
|
1514
1514
|
"elementClass": {
|
|
1515
|
-
"
|
|
1515
|
+
"anyOf": [
|
|
1516
1516
|
{
|
|
1517
1517
|
"type": "string"
|
|
1518
1518
|
},
|
|
@@ -1529,7 +1529,7 @@
|
|
|
1529
1529
|
"type": "object",
|
|
1530
1530
|
"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.",
|
|
1531
1531
|
"additionalProperties": {
|
|
1532
|
-
"
|
|
1532
|
+
"anyOf": [
|
|
1533
1533
|
{
|
|
1534
1534
|
"type": "string"
|
|
1535
1535
|
},
|
|
@@ -1635,7 +1635,7 @@
|
|
|
1635
1635
|
"description": "data-testid attribute of the element to click. Supports exact match or regex pattern using /pattern/ syntax."
|
|
1636
1636
|
},
|
|
1637
1637
|
"elementClass": {
|
|
1638
|
-
"
|
|
1638
|
+
"anyOf": [
|
|
1639
1639
|
{
|
|
1640
1640
|
"type": "string"
|
|
1641
1641
|
},
|
|
@@ -1652,7 +1652,7 @@
|
|
|
1652
1652
|
"type": "object",
|
|
1653
1653
|
"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.",
|
|
1654
1654
|
"additionalProperties": {
|
|
1655
|
-
"
|
|
1655
|
+
"anyOf": [
|
|
1656
1656
|
{
|
|
1657
1657
|
"type": "string"
|
|
1658
1658
|
},
|
|
@@ -1722,7 +1722,7 @@
|
|
|
1722
1722
|
{
|
|
1723
1723
|
"type": "array",
|
|
1724
1724
|
"items": {
|
|
1725
|
-
"
|
|
1725
|
+
"anyOf": [
|
|
1726
1726
|
{
|
|
1727
1727
|
"type": "string"
|
|
1728
1728
|
}
|
|
@@ -1745,7 +1745,7 @@
|
|
|
1745
1745
|
{
|
|
1746
1746
|
"type": "array",
|
|
1747
1747
|
"items": {
|
|
1748
|
-
"
|
|
1748
|
+
"anyOf": [
|
|
1749
1749
|
{
|
|
1750
1750
|
"type": "string"
|
|
1751
1751
|
}
|
|
@@ -1776,7 +1776,7 @@
|
|
|
1776
1776
|
"description": "data-testid attribute of the element to find. Supports exact match or regex pattern using /pattern/ syntax."
|
|
1777
1777
|
},
|
|
1778
1778
|
"elementClass": {
|
|
1779
|
-
"
|
|
1779
|
+
"anyOf": [
|
|
1780
1780
|
{
|
|
1781
1781
|
"type": "string"
|
|
1782
1782
|
},
|
|
@@ -1793,7 +1793,7 @@
|
|
|
1793
1793
|
"type": "object",
|
|
1794
1794
|
"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.",
|
|
1795
1795
|
"additionalProperties": {
|
|
1796
|
-
"
|
|
1796
|
+
"anyOf": [
|
|
1797
1797
|
{
|
|
1798
1798
|
"type": "string"
|
|
1799
1799
|
},
|
|
@@ -1829,7 +1829,7 @@
|
|
|
1829
1829
|
{
|
|
1830
1830
|
"type": "array",
|
|
1831
1831
|
"items": {
|
|
1832
|
-
"
|
|
1832
|
+
"anyOf": [
|
|
1833
1833
|
{
|
|
1834
1834
|
"type": "string"
|
|
1835
1835
|
}
|
|
@@ -1852,7 +1852,7 @@
|
|
|
1852
1852
|
{
|
|
1853
1853
|
"type": "array",
|
|
1854
1854
|
"items": {
|
|
1855
|
-
"
|
|
1855
|
+
"anyOf": [
|
|
1856
1856
|
{
|
|
1857
1857
|
"type": "string"
|
|
1858
1858
|
}
|
|
@@ -1883,7 +1883,7 @@
|
|
|
1883
1883
|
"description": "data-testid attribute of the element to find. Supports exact match or regex pattern using /pattern/ syntax."
|
|
1884
1884
|
},
|
|
1885
1885
|
"elementClass": {
|
|
1886
|
-
"
|
|
1886
|
+
"anyOf": [
|
|
1887
1887
|
{
|
|
1888
1888
|
"type": "string"
|
|
1889
1889
|
},
|
|
@@ -1900,7 +1900,7 @@
|
|
|
1900
1900
|
"type": "object",
|
|
1901
1901
|
"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.",
|
|
1902
1902
|
"additionalProperties": {
|
|
1903
|
-
"
|
|
1903
|
+
"anyOf": [
|
|
1904
1904
|
{
|
|
1905
1905
|
"type": "string"
|
|
1906
1906
|
},
|
|
@@ -2037,7 +2037,7 @@
|
|
|
2037
2037
|
"description": "data-testid attribute of the element to find. Supports exact match or regex pattern using /pattern/ syntax."
|
|
2038
2038
|
},
|
|
2039
2039
|
"elementClass": {
|
|
2040
|
-
"
|
|
2040
|
+
"anyOf": [
|
|
2041
2041
|
{
|
|
2042
2042
|
"type": "string"
|
|
2043
2043
|
},
|
|
@@ -2054,7 +2054,7 @@
|
|
|
2054
2054
|
"type": "object",
|
|
2055
2055
|
"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.",
|
|
2056
2056
|
"additionalProperties": {
|
|
2057
|
-
"
|
|
2057
|
+
"anyOf": [
|
|
2058
2058
|
{
|
|
2059
2059
|
"type": "string"
|
|
2060
2060
|
},
|
|
@@ -2161,7 +2161,7 @@
|
|
|
2161
2161
|
"description": "data-testid attribute of the element to click. Supports exact match or regex pattern using /pattern/ syntax."
|
|
2162
2162
|
},
|
|
2163
2163
|
"elementClass": {
|
|
2164
|
-
"
|
|
2164
|
+
"anyOf": [
|
|
2165
2165
|
{
|
|
2166
2166
|
"type": "string"
|
|
2167
2167
|
},
|
|
@@ -2178,7 +2178,7 @@
|
|
|
2178
2178
|
"type": "object",
|
|
2179
2179
|
"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.",
|
|
2180
2180
|
"additionalProperties": {
|
|
2181
|
-
"
|
|
2181
|
+
"anyOf": [
|
|
2182
2182
|
{
|
|
2183
2183
|
"type": "string"
|
|
2184
2184
|
},
|
|
@@ -2284,7 +2284,7 @@
|
|
|
2284
2284
|
"description": "data-testid attribute of the element to click. Supports exact match or regex pattern using /pattern/ syntax."
|
|
2285
2285
|
},
|
|
2286
2286
|
"elementClass": {
|
|
2287
|
-
"
|
|
2287
|
+
"anyOf": [
|
|
2288
2288
|
{
|
|
2289
2289
|
"type": "string"
|
|
2290
2290
|
},
|
|
@@ -2301,7 +2301,7 @@
|
|
|
2301
2301
|
"type": "object",
|
|
2302
2302
|
"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.",
|
|
2303
2303
|
"additionalProperties": {
|
|
2304
|
-
"
|
|
2304
|
+
"anyOf": [
|
|
2305
2305
|
{
|
|
2306
2306
|
"type": "string"
|
|
2307
2307
|
},
|
|
@@ -2371,7 +2371,7 @@
|
|
|
2371
2371
|
{
|
|
2372
2372
|
"type": "array",
|
|
2373
2373
|
"items": {
|
|
2374
|
-
"
|
|
2374
|
+
"anyOf": [
|
|
2375
2375
|
{
|
|
2376
2376
|
"type": "string"
|
|
2377
2377
|
}
|
|
@@ -2394,7 +2394,7 @@
|
|
|
2394
2394
|
{
|
|
2395
2395
|
"type": "array",
|
|
2396
2396
|
"items": {
|
|
2397
|
-
"
|
|
2397
|
+
"anyOf": [
|
|
2398
2398
|
{
|
|
2399
2399
|
"type": "string"
|
|
2400
2400
|
}
|
|
@@ -2425,7 +2425,7 @@
|
|
|
2425
2425
|
"description": "data-testid attribute of the element to find. Supports exact match or regex pattern using /pattern/ syntax."
|
|
2426
2426
|
},
|
|
2427
2427
|
"elementClass": {
|
|
2428
|
-
"
|
|
2428
|
+
"anyOf": [
|
|
2429
2429
|
{
|
|
2430
2430
|
"type": "string"
|
|
2431
2431
|
},
|
|
@@ -2442,7 +2442,7 @@
|
|
|
2442
2442
|
"type": "object",
|
|
2443
2443
|
"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.",
|
|
2444
2444
|
"additionalProperties": {
|
|
2445
|
-
"
|
|
2445
|
+
"anyOf": [
|
|
2446
2446
|
{
|
|
2447
2447
|
"type": "string"
|
|
2448
2448
|
},
|
|
@@ -2478,7 +2478,7 @@
|
|
|
2478
2478
|
{
|
|
2479
2479
|
"type": "array",
|
|
2480
2480
|
"items": {
|
|
2481
|
-
"
|
|
2481
|
+
"anyOf": [
|
|
2482
2482
|
{
|
|
2483
2483
|
"type": "string"
|
|
2484
2484
|
}
|
|
@@ -2501,7 +2501,7 @@
|
|
|
2501
2501
|
{
|
|
2502
2502
|
"type": "array",
|
|
2503
2503
|
"items": {
|
|
2504
|
-
"
|
|
2504
|
+
"anyOf": [
|
|
2505
2505
|
{
|
|
2506
2506
|
"type": "string"
|
|
2507
2507
|
}
|
|
@@ -2532,7 +2532,7 @@
|
|
|
2532
2532
|
"description": "data-testid attribute of the element to find. Supports exact match or regex pattern using /pattern/ syntax."
|
|
2533
2533
|
},
|
|
2534
2534
|
"elementClass": {
|
|
2535
|
-
"
|
|
2535
|
+
"anyOf": [
|
|
2536
2536
|
{
|
|
2537
2537
|
"type": "string"
|
|
2538
2538
|
},
|
|
@@ -2549,7 +2549,7 @@
|
|
|
2549
2549
|
"type": "object",
|
|
2550
2550
|
"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.",
|
|
2551
2551
|
"additionalProperties": {
|
|
2552
|
-
"
|
|
2552
|
+
"anyOf": [
|
|
2553
2553
|
{
|
|
2554
2554
|
"type": "string"
|
|
2555
2555
|
},
|
|
@@ -2652,6 +2652,19 @@
|
|
|
2652
2652
|
],
|
|
2653
2653
|
"inputDelay": 100
|
|
2654
2654
|
}
|
|
2655
|
+
},
|
|
2656
|
+
{
|
|
2657
|
+
"elementId": "/^user-[0-9]+$/",
|
|
2658
|
+
"elementClass": [
|
|
2659
|
+
"admin",
|
|
2660
|
+
"/^level-[1-5]$/"
|
|
2661
|
+
],
|
|
2662
|
+
"elementAttribute": {
|
|
2663
|
+
"data-active": true,
|
|
2664
|
+
"data-score": "/^[0-9]+$/"
|
|
2665
|
+
},
|
|
2666
|
+
"timeout": 8000,
|
|
2667
|
+
"moveTo": false
|
|
2655
2668
|
}
|
|
2656
2669
|
]
|
|
2657
2670
|
}
|
|
@@ -3121,7 +3134,7 @@
|
|
|
3121
3134
|
"description": "Accepted status codes. If the specified URL returns a code other than what is specified here, the action fails.",
|
|
3122
3135
|
"type": "array",
|
|
3123
3136
|
"items": {
|
|
3124
|
-
"
|
|
3137
|
+
"anyOf": [
|
|
3125
3138
|
{
|
|
3126
3139
|
"type": "integer"
|
|
3127
3140
|
}
|
|
@@ -3520,7 +3533,7 @@
|
|
|
3520
3533
|
"description": "Accepted status codes. If the specified URL returns a code other than what is specified here, the action fails.",
|
|
3521
3534
|
"type": "array",
|
|
3522
3535
|
"items": {
|
|
3523
|
-
"
|
|
3536
|
+
"anyOf": [
|
|
3524
3537
|
{
|
|
3525
3538
|
"type": "integer"
|
|
3526
3539
|
}
|
|
@@ -3981,7 +3994,7 @@
|
|
|
3981
3994
|
"type": "array",
|
|
3982
3995
|
"description": "Arguments for the command.",
|
|
3983
3996
|
"items": {
|
|
3984
|
-
"
|
|
3997
|
+
"anyOf": [
|
|
3985
3998
|
{
|
|
3986
3999
|
"type": "string"
|
|
3987
4000
|
}
|
|
@@ -3998,7 +4011,7 @@
|
|
|
3998
4011
|
"type": "array",
|
|
3999
4012
|
"description": "Expected exit codes of the command. If the command's actual exit code isn't in this list, the step fails.",
|
|
4000
4013
|
"items": {
|
|
4001
|
-
"
|
|
4014
|
+
"anyOf": [
|
|
4002
4015
|
{
|
|
4003
4016
|
"type": "integer"
|
|
4004
4017
|
}
|
|
@@ -4071,7 +4084,7 @@
|
|
|
4071
4084
|
"type": "array",
|
|
4072
4085
|
"description": "Arguments for the command.",
|
|
4073
4086
|
"items": {
|
|
4074
|
-
"
|
|
4087
|
+
"anyOf": [
|
|
4075
4088
|
{
|
|
4076
4089
|
"type": "string"
|
|
4077
4090
|
}
|
|
@@ -4088,7 +4101,7 @@
|
|
|
4088
4101
|
"type": "array",
|
|
4089
4102
|
"description": "Expected exit codes of the command. If the command's actual exit code isn't in this list, the step fails.",
|
|
4090
4103
|
"items": {
|
|
4091
|
-
"
|
|
4104
|
+
"anyOf": [
|
|
4092
4105
|
{
|
|
4093
4106
|
"type": "integer"
|
|
4094
4107
|
}
|
|
@@ -4289,7 +4302,7 @@
|
|
|
4289
4302
|
"type": "array",
|
|
4290
4303
|
"description": "Arguments for the command.",
|
|
4291
4304
|
"items": {
|
|
4292
|
-
"
|
|
4305
|
+
"anyOf": [
|
|
4293
4306
|
{
|
|
4294
4307
|
"type": "string"
|
|
4295
4308
|
}
|
|
@@ -4306,7 +4319,7 @@
|
|
|
4306
4319
|
"type": "array",
|
|
4307
4320
|
"description": "Expected exit codes of the command. If the command's actual exit code isn't in this list, the step fails.",
|
|
4308
4321
|
"items": {
|
|
4309
|
-
"
|
|
4322
|
+
"anyOf": [
|
|
4310
4323
|
{
|
|
4311
4324
|
"type": "integer"
|
|
4312
4325
|
}
|
|
@@ -4380,7 +4393,7 @@
|
|
|
4380
4393
|
"type": "array",
|
|
4381
4394
|
"description": "Arguments for the command.",
|
|
4382
4395
|
"items": {
|
|
4383
|
-
"
|
|
4396
|
+
"anyOf": [
|
|
4384
4397
|
{
|
|
4385
4398
|
"type": "string"
|
|
4386
4399
|
}
|
|
@@ -4397,7 +4410,7 @@
|
|
|
4397
4410
|
"type": "array",
|
|
4398
4411
|
"description": "Expected exit codes of the command. If the command's actual exit code isn't in this list, the step fails.",
|
|
4399
4412
|
"items": {
|
|
4400
|
-
"
|
|
4413
|
+
"anyOf": [
|
|
4401
4414
|
{
|
|
4402
4415
|
"type": "integer"
|
|
4403
4416
|
}
|
|
@@ -4568,7 +4581,7 @@
|
|
|
4568
4581
|
{
|
|
4569
4582
|
"type": "array",
|
|
4570
4583
|
"items": {
|
|
4571
|
-
"
|
|
4584
|
+
"anyOf": [
|
|
4572
4585
|
{
|
|
4573
4586
|
"type": "string"
|
|
4574
4587
|
}
|
|
@@ -4591,7 +4604,7 @@
|
|
|
4591
4604
|
{
|
|
4592
4605
|
"type": "array",
|
|
4593
4606
|
"items": {
|
|
4594
|
-
"
|
|
4607
|
+
"anyOf": [
|
|
4595
4608
|
{
|
|
4596
4609
|
"type": "string"
|
|
4597
4610
|
}
|
|
@@ -4622,7 +4635,7 @@
|
|
|
4622
4635
|
"description": "data-testid attribute of the element to find. Supports exact match or regex pattern using /pattern/ syntax."
|
|
4623
4636
|
},
|
|
4624
4637
|
"elementClass": {
|
|
4625
|
-
"
|
|
4638
|
+
"anyOf": [
|
|
4626
4639
|
{
|
|
4627
4640
|
"type": "string"
|
|
4628
4641
|
},
|
|
@@ -4639,7 +4652,7 @@
|
|
|
4639
4652
|
"type": "object",
|
|
4640
4653
|
"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.",
|
|
4641
4654
|
"additionalProperties": {
|
|
4642
|
-
"
|
|
4655
|
+
"anyOf": [
|
|
4643
4656
|
{
|
|
4644
4657
|
"type": "string"
|
|
4645
4658
|
},
|
|
@@ -4675,7 +4688,7 @@
|
|
|
4675
4688
|
{
|
|
4676
4689
|
"type": "array",
|
|
4677
4690
|
"items": {
|
|
4678
|
-
"
|
|
4691
|
+
"anyOf": [
|
|
4679
4692
|
{
|
|
4680
4693
|
"type": "string"
|
|
4681
4694
|
}
|
|
@@ -4698,7 +4711,7 @@
|
|
|
4698
4711
|
{
|
|
4699
4712
|
"type": "array",
|
|
4700
4713
|
"items": {
|
|
4701
|
-
"
|
|
4714
|
+
"anyOf": [
|
|
4702
4715
|
{
|
|
4703
4716
|
"type": "string"
|
|
4704
4717
|
}
|
|
@@ -4729,7 +4742,7 @@
|
|
|
4729
4742
|
"description": "data-testid attribute of the element to find. Supports exact match or regex pattern using /pattern/ syntax."
|
|
4730
4743
|
},
|
|
4731
4744
|
"elementClass": {
|
|
4732
|
-
"
|
|
4745
|
+
"anyOf": [
|
|
4733
4746
|
{
|
|
4734
4747
|
"type": "string"
|
|
4735
4748
|
},
|
|
@@ -4746,7 +4759,7 @@
|
|
|
4746
4759
|
"type": "object",
|
|
4747
4760
|
"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.",
|
|
4748
4761
|
"additionalProperties": {
|
|
4749
|
-
"
|
|
4762
|
+
"anyOf": [
|
|
4750
4763
|
{
|
|
4751
4764
|
"type": "string"
|
|
4752
4765
|
},
|
|
@@ -4986,7 +4999,7 @@
|
|
|
4986
4999
|
"description": "data-testid attribute of the element to find. Supports exact match or regex pattern using /pattern/ syntax."
|
|
4987
5000
|
},
|
|
4988
5001
|
"elementClass": {
|
|
4989
|
-
"
|
|
5002
|
+
"anyOf": [
|
|
4990
5003
|
{
|
|
4991
5004
|
"type": "string"
|
|
4992
5005
|
},
|
|
@@ -5003,7 +5016,7 @@
|
|
|
5003
5016
|
"type": "object",
|
|
5004
5017
|
"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.",
|
|
5005
5018
|
"additionalProperties": {
|
|
5006
|
-
"
|
|
5019
|
+
"anyOf": [
|
|
5007
5020
|
{
|
|
5008
5021
|
"type": "string"
|
|
5009
5022
|
},
|
|
@@ -5182,7 +5195,7 @@
|
|
|
5182
5195
|
"description": "data-testid attribute of the element to find. Supports exact match or regex pattern using /pattern/ syntax."
|
|
5183
5196
|
},
|
|
5184
5197
|
"elementClass": {
|
|
5185
|
-
"
|
|
5198
|
+
"anyOf": [
|
|
5186
5199
|
{
|
|
5187
5200
|
"type": "string"
|
|
5188
5201
|
},
|
|
@@ -5199,7 +5212,7 @@
|
|
|
5199
5212
|
"type": "object",
|
|
5200
5213
|
"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.",
|
|
5201
5214
|
"additionalProperties": {
|
|
5202
|
-
"
|
|
5215
|
+
"anyOf": [
|
|
5203
5216
|
{
|
|
5204
5217
|
"type": "string"
|
|
5205
5218
|
},
|
|
@@ -5317,7 +5330,7 @@
|
|
|
5317
5330
|
"description": "data-testid attribute of the element to find. Supports exact match or regex pattern using /pattern/ syntax."
|
|
5318
5331
|
},
|
|
5319
5332
|
"elementClass": {
|
|
5320
|
-
"
|
|
5333
|
+
"anyOf": [
|
|
5321
5334
|
{
|
|
5322
5335
|
"type": "string"
|
|
5323
5336
|
},
|
|
@@ -5334,7 +5347,7 @@
|
|
|
5334
5347
|
"type": "object",
|
|
5335
5348
|
"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.",
|
|
5336
5349
|
"additionalProperties": {
|
|
5337
|
-
"
|
|
5350
|
+
"anyOf": [
|
|
5338
5351
|
{
|
|
5339
5352
|
"type": "string"
|
|
5340
5353
|
},
|
|
@@ -7690,7 +7703,7 @@
|
|
|
7690
7703
|
{
|
|
7691
7704
|
"type": "array",
|
|
7692
7705
|
"items": {
|
|
7693
|
-
"
|
|
7706
|
+
"anyOf": [
|
|
7694
7707
|
{
|
|
7695
7708
|
"type": "integer"
|
|
7696
7709
|
}
|
|
@@ -7753,7 +7766,7 @@
|
|
|
7753
7766
|
{
|
|
7754
7767
|
"type": "array",
|
|
7755
7768
|
"items": {
|
|
7756
|
-
"
|
|
7769
|
+
"anyOf": [
|
|
7757
7770
|
{
|
|
7758
7771
|
"type": "integer"
|
|
7759
7772
|
}
|
|
@@ -7937,7 +7950,7 @@
|
|
|
7937
7950
|
"description": "data-testid attribute of the element to click. Supports exact match or regex pattern using /pattern/ syntax."
|
|
7938
7951
|
},
|
|
7939
7952
|
"elementClass": {
|
|
7940
|
-
"
|
|
7953
|
+
"anyOf": [
|
|
7941
7954
|
{
|
|
7942
7955
|
"type": "string"
|
|
7943
7956
|
},
|
|
@@ -7954,7 +7967,7 @@
|
|
|
7954
7967
|
"type": "object",
|
|
7955
7968
|
"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.",
|
|
7956
7969
|
"additionalProperties": {
|
|
7957
|
-
"
|
|
7970
|
+
"anyOf": [
|
|
7958
7971
|
{
|
|
7959
7972
|
"type": "string"
|
|
7960
7973
|
},
|
|
@@ -8060,7 +8073,7 @@
|
|
|
8060
8073
|
"description": "data-testid attribute of the element to click. Supports exact match or regex pattern using /pattern/ syntax."
|
|
8061
8074
|
},
|
|
8062
8075
|
"elementClass": {
|
|
8063
|
-
"
|
|
8076
|
+
"anyOf": [
|
|
8064
8077
|
{
|
|
8065
8078
|
"type": "string"
|
|
8066
8079
|
},
|
|
@@ -8077,7 +8090,7 @@
|
|
|
8077
8090
|
"type": "object",
|
|
8078
8091
|
"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.",
|
|
8079
8092
|
"additionalProperties": {
|
|
8080
|
-
"
|
|
8093
|
+
"anyOf": [
|
|
8081
8094
|
{
|
|
8082
8095
|
"type": "string"
|
|
8083
8096
|
},
|
|
@@ -8252,7 +8265,7 @@
|
|
|
8252
8265
|
"description": "data-testid attribute of the element to find. Supports exact match or regex pattern using /pattern/ syntax."
|
|
8253
8266
|
},
|
|
8254
8267
|
"elementClass": {
|
|
8255
|
-
"
|
|
8268
|
+
"anyOf": [
|
|
8256
8269
|
{
|
|
8257
8270
|
"type": "string"
|
|
8258
8271
|
},
|
|
@@ -8269,7 +8282,7 @@
|
|
|
8269
8282
|
"type": "object",
|
|
8270
8283
|
"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.",
|
|
8271
8284
|
"additionalProperties": {
|
|
8272
|
-
"
|
|
8285
|
+
"anyOf": [
|
|
8273
8286
|
{
|
|
8274
8287
|
"type": "string"
|
|
8275
8288
|
},
|
|
@@ -8376,7 +8389,7 @@
|
|
|
8376
8389
|
"description": "data-testid attribute of the element to click. Supports exact match or regex pattern using /pattern/ syntax."
|
|
8377
8390
|
},
|
|
8378
8391
|
"elementClass": {
|
|
8379
|
-
"
|
|
8392
|
+
"anyOf": [
|
|
8380
8393
|
{
|
|
8381
8394
|
"type": "string"
|
|
8382
8395
|
},
|
|
@@ -8393,7 +8406,7 @@
|
|
|
8393
8406
|
"type": "object",
|
|
8394
8407
|
"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.",
|
|
8395
8408
|
"additionalProperties": {
|
|
8396
|
-
"
|
|
8409
|
+
"anyOf": [
|
|
8397
8410
|
{
|
|
8398
8411
|
"type": "string"
|
|
8399
8412
|
},
|
|
@@ -8499,7 +8512,7 @@
|
|
|
8499
8512
|
"description": "data-testid attribute of the element to click. Supports exact match or regex pattern using /pattern/ syntax."
|
|
8500
8513
|
},
|
|
8501
8514
|
"elementClass": {
|
|
8502
|
-
"
|
|
8515
|
+
"anyOf": [
|
|
8503
8516
|
{
|
|
8504
8517
|
"type": "string"
|
|
8505
8518
|
},
|
|
@@ -8516,7 +8529,7 @@
|
|
|
8516
8529
|
"type": "object",
|
|
8517
8530
|
"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.",
|
|
8518
8531
|
"additionalProperties": {
|
|
8519
|
-
"
|
|
8532
|
+
"anyOf": [
|
|
8520
8533
|
{
|
|
8521
8534
|
"type": "string"
|
|
8522
8535
|
},
|
|
@@ -8586,7 +8599,7 @@
|
|
|
8586
8599
|
{
|
|
8587
8600
|
"type": "array",
|
|
8588
8601
|
"items": {
|
|
8589
|
-
"
|
|
8602
|
+
"anyOf": [
|
|
8590
8603
|
{
|
|
8591
8604
|
"type": "string"
|
|
8592
8605
|
}
|
|
@@ -8609,7 +8622,7 @@
|
|
|
8609
8622
|
{
|
|
8610
8623
|
"type": "array",
|
|
8611
8624
|
"items": {
|
|
8612
|
-
"
|
|
8625
|
+
"anyOf": [
|
|
8613
8626
|
{
|
|
8614
8627
|
"type": "string"
|
|
8615
8628
|
}
|
|
@@ -8640,7 +8653,7 @@
|
|
|
8640
8653
|
"description": "data-testid attribute of the element to find. Supports exact match or regex pattern using /pattern/ syntax."
|
|
8641
8654
|
},
|
|
8642
8655
|
"elementClass": {
|
|
8643
|
-
"
|
|
8656
|
+
"anyOf": [
|
|
8644
8657
|
{
|
|
8645
8658
|
"type": "string"
|
|
8646
8659
|
},
|
|
@@ -8657,7 +8670,7 @@
|
|
|
8657
8670
|
"type": "object",
|
|
8658
8671
|
"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.",
|
|
8659
8672
|
"additionalProperties": {
|
|
8660
|
-
"
|
|
8673
|
+
"anyOf": [
|
|
8661
8674
|
{
|
|
8662
8675
|
"type": "string"
|
|
8663
8676
|
},
|
|
@@ -8693,7 +8706,7 @@
|
|
|
8693
8706
|
{
|
|
8694
8707
|
"type": "array",
|
|
8695
8708
|
"items": {
|
|
8696
|
-
"
|
|
8709
|
+
"anyOf": [
|
|
8697
8710
|
{
|
|
8698
8711
|
"type": "string"
|
|
8699
8712
|
}
|
|
@@ -8716,7 +8729,7 @@
|
|
|
8716
8729
|
{
|
|
8717
8730
|
"type": "array",
|
|
8718
8731
|
"items": {
|
|
8719
|
-
"
|
|
8732
|
+
"anyOf": [
|
|
8720
8733
|
{
|
|
8721
8734
|
"type": "string"
|
|
8722
8735
|
}
|
|
@@ -8747,7 +8760,7 @@
|
|
|
8747
8760
|
"description": "data-testid attribute of the element to find. Supports exact match or regex pattern using /pattern/ syntax."
|
|
8748
8761
|
},
|
|
8749
8762
|
"elementClass": {
|
|
8750
|
-
"
|
|
8763
|
+
"anyOf": [
|
|
8751
8764
|
{
|
|
8752
8765
|
"type": "string"
|
|
8753
8766
|
},
|
|
@@ -8764,7 +8777,7 @@
|
|
|
8764
8777
|
"type": "object",
|
|
8765
8778
|
"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.",
|
|
8766
8779
|
"additionalProperties": {
|
|
8767
|
-
"
|
|
8780
|
+
"anyOf": [
|
|
8768
8781
|
{
|
|
8769
8782
|
"type": "string"
|
|
8770
8783
|
},
|
|
@@ -8901,7 +8914,7 @@
|
|
|
8901
8914
|
"description": "data-testid attribute of the element to find. Supports exact match or regex pattern using /pattern/ syntax."
|
|
8902
8915
|
},
|
|
8903
8916
|
"elementClass": {
|
|
8904
|
-
"
|
|
8917
|
+
"anyOf": [
|
|
8905
8918
|
{
|
|
8906
8919
|
"type": "string"
|
|
8907
8920
|
},
|
|
@@ -8918,7 +8931,7 @@
|
|
|
8918
8931
|
"type": "object",
|
|
8919
8932
|
"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.",
|
|
8920
8933
|
"additionalProperties": {
|
|
8921
|
-
"
|
|
8934
|
+
"anyOf": [
|
|
8922
8935
|
{
|
|
8923
8936
|
"type": "string"
|
|
8924
8937
|
},
|
|
@@ -9025,7 +9038,7 @@
|
|
|
9025
9038
|
"description": "data-testid attribute of the element to click. Supports exact match or regex pattern using /pattern/ syntax."
|
|
9026
9039
|
},
|
|
9027
9040
|
"elementClass": {
|
|
9028
|
-
"
|
|
9041
|
+
"anyOf": [
|
|
9029
9042
|
{
|
|
9030
9043
|
"type": "string"
|
|
9031
9044
|
},
|
|
@@ -9042,7 +9055,7 @@
|
|
|
9042
9055
|
"type": "object",
|
|
9043
9056
|
"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.",
|
|
9044
9057
|
"additionalProperties": {
|
|
9045
|
-
"
|
|
9058
|
+
"anyOf": [
|
|
9046
9059
|
{
|
|
9047
9060
|
"type": "string"
|
|
9048
9061
|
},
|
|
@@ -9148,7 +9161,7 @@
|
|
|
9148
9161
|
"description": "data-testid attribute of the element to click. Supports exact match or regex pattern using /pattern/ syntax."
|
|
9149
9162
|
},
|
|
9150
9163
|
"elementClass": {
|
|
9151
|
-
"
|
|
9164
|
+
"anyOf": [
|
|
9152
9165
|
{
|
|
9153
9166
|
"type": "string"
|
|
9154
9167
|
},
|
|
@@ -9165,7 +9178,7 @@
|
|
|
9165
9178
|
"type": "object",
|
|
9166
9179
|
"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.",
|
|
9167
9180
|
"additionalProperties": {
|
|
9168
|
-
"
|
|
9181
|
+
"anyOf": [
|
|
9169
9182
|
{
|
|
9170
9183
|
"type": "string"
|
|
9171
9184
|
},
|
|
@@ -9235,7 +9248,7 @@
|
|
|
9235
9248
|
{
|
|
9236
9249
|
"type": "array",
|
|
9237
9250
|
"items": {
|
|
9238
|
-
"
|
|
9251
|
+
"anyOf": [
|
|
9239
9252
|
{
|
|
9240
9253
|
"type": "string"
|
|
9241
9254
|
}
|
|
@@ -9258,7 +9271,7 @@
|
|
|
9258
9271
|
{
|
|
9259
9272
|
"type": "array",
|
|
9260
9273
|
"items": {
|
|
9261
|
-
"
|
|
9274
|
+
"anyOf": [
|
|
9262
9275
|
{
|
|
9263
9276
|
"type": "string"
|
|
9264
9277
|
}
|
|
@@ -9289,7 +9302,7 @@
|
|
|
9289
9302
|
"description": "data-testid attribute of the element to find. Supports exact match or regex pattern using /pattern/ syntax."
|
|
9290
9303
|
},
|
|
9291
9304
|
"elementClass": {
|
|
9292
|
-
"
|
|
9305
|
+
"anyOf": [
|
|
9293
9306
|
{
|
|
9294
9307
|
"type": "string"
|
|
9295
9308
|
},
|
|
@@ -9306,7 +9319,7 @@
|
|
|
9306
9319
|
"type": "object",
|
|
9307
9320
|
"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.",
|
|
9308
9321
|
"additionalProperties": {
|
|
9309
|
-
"
|
|
9322
|
+
"anyOf": [
|
|
9310
9323
|
{
|
|
9311
9324
|
"type": "string"
|
|
9312
9325
|
},
|
|
@@ -9342,7 +9355,7 @@
|
|
|
9342
9355
|
{
|
|
9343
9356
|
"type": "array",
|
|
9344
9357
|
"items": {
|
|
9345
|
-
"
|
|
9358
|
+
"anyOf": [
|
|
9346
9359
|
{
|
|
9347
9360
|
"type": "string"
|
|
9348
9361
|
}
|
|
@@ -9365,7 +9378,7 @@
|
|
|
9365
9378
|
{
|
|
9366
9379
|
"type": "array",
|
|
9367
9380
|
"items": {
|
|
9368
|
-
"
|
|
9381
|
+
"anyOf": [
|
|
9369
9382
|
{
|
|
9370
9383
|
"type": "string"
|
|
9371
9384
|
}
|
|
@@ -9396,7 +9409,7 @@
|
|
|
9396
9409
|
"description": "data-testid attribute of the element to find. Supports exact match or regex pattern using /pattern/ syntax."
|
|
9397
9410
|
},
|
|
9398
9411
|
"elementClass": {
|
|
9399
|
-
"
|
|
9412
|
+
"anyOf": [
|
|
9400
9413
|
{
|
|
9401
9414
|
"type": "string"
|
|
9402
9415
|
},
|
|
@@ -9413,7 +9426,7 @@
|
|
|
9413
9426
|
"type": "object",
|
|
9414
9427
|
"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.",
|
|
9415
9428
|
"additionalProperties": {
|
|
9416
|
-
"
|
|
9429
|
+
"anyOf": [
|
|
9417
9430
|
{
|
|
9418
9431
|
"type": "string"
|
|
9419
9432
|
},
|
|
@@ -9516,6 +9529,19 @@
|
|
|
9516
9529
|
],
|
|
9517
9530
|
"inputDelay": 100
|
|
9518
9531
|
}
|
|
9532
|
+
},
|
|
9533
|
+
{
|
|
9534
|
+
"elementId": "/^user-[0-9]+$/",
|
|
9535
|
+
"elementClass": [
|
|
9536
|
+
"admin",
|
|
9537
|
+
"/^level-[1-5]$/"
|
|
9538
|
+
],
|
|
9539
|
+
"elementAttribute": {
|
|
9540
|
+
"data-active": true,
|
|
9541
|
+
"data-score": "/^[0-9]+$/"
|
|
9542
|
+
},
|
|
9543
|
+
"timeout": 8000,
|
|
9544
|
+
"moveTo": false
|
|
9519
9545
|
}
|
|
9520
9546
|
]
|
|
9521
9547
|
}
|
|
@@ -9985,7 +10011,7 @@
|
|
|
9985
10011
|
"description": "Accepted status codes. If the specified URL returns a code other than what is specified here, the action fails.",
|
|
9986
10012
|
"type": "array",
|
|
9987
10013
|
"items": {
|
|
9988
|
-
"
|
|
10014
|
+
"anyOf": [
|
|
9989
10015
|
{
|
|
9990
10016
|
"type": "integer"
|
|
9991
10017
|
}
|
|
@@ -10384,7 +10410,7 @@
|
|
|
10384
10410
|
"description": "Accepted status codes. If the specified URL returns a code other than what is specified here, the action fails.",
|
|
10385
10411
|
"type": "array",
|
|
10386
10412
|
"items": {
|
|
10387
|
-
"
|
|
10413
|
+
"anyOf": [
|
|
10388
10414
|
{
|
|
10389
10415
|
"type": "integer"
|
|
10390
10416
|
}
|
|
@@ -10845,7 +10871,7 @@
|
|
|
10845
10871
|
"type": "array",
|
|
10846
10872
|
"description": "Arguments for the command.",
|
|
10847
10873
|
"items": {
|
|
10848
|
-
"
|
|
10874
|
+
"anyOf": [
|
|
10849
10875
|
{
|
|
10850
10876
|
"type": "string"
|
|
10851
10877
|
}
|
|
@@ -10862,7 +10888,7 @@
|
|
|
10862
10888
|
"type": "array",
|
|
10863
10889
|
"description": "Expected exit codes of the command. If the command's actual exit code isn't in this list, the step fails.",
|
|
10864
10890
|
"items": {
|
|
10865
|
-
"
|
|
10891
|
+
"anyOf": [
|
|
10866
10892
|
{
|
|
10867
10893
|
"type": "integer"
|
|
10868
10894
|
}
|
|
@@ -10935,7 +10961,7 @@
|
|
|
10935
10961
|
"type": "array",
|
|
10936
10962
|
"description": "Arguments for the command.",
|
|
10937
10963
|
"items": {
|
|
10938
|
-
"
|
|
10964
|
+
"anyOf": [
|
|
10939
10965
|
{
|
|
10940
10966
|
"type": "string"
|
|
10941
10967
|
}
|
|
@@ -10952,7 +10978,7 @@
|
|
|
10952
10978
|
"type": "array",
|
|
10953
10979
|
"description": "Expected exit codes of the command. If the command's actual exit code isn't in this list, the step fails.",
|
|
10954
10980
|
"items": {
|
|
10955
|
-
"
|
|
10981
|
+
"anyOf": [
|
|
10956
10982
|
{
|
|
10957
10983
|
"type": "integer"
|
|
10958
10984
|
}
|
|
@@ -11153,7 +11179,7 @@
|
|
|
11153
11179
|
"type": "array",
|
|
11154
11180
|
"description": "Arguments for the command.",
|
|
11155
11181
|
"items": {
|
|
11156
|
-
"
|
|
11182
|
+
"anyOf": [
|
|
11157
11183
|
{
|
|
11158
11184
|
"type": "string"
|
|
11159
11185
|
}
|
|
@@ -11170,7 +11196,7 @@
|
|
|
11170
11196
|
"type": "array",
|
|
11171
11197
|
"description": "Expected exit codes of the command. If the command's actual exit code isn't in this list, the step fails.",
|
|
11172
11198
|
"items": {
|
|
11173
|
-
"
|
|
11199
|
+
"anyOf": [
|
|
11174
11200
|
{
|
|
11175
11201
|
"type": "integer"
|
|
11176
11202
|
}
|
|
@@ -11244,7 +11270,7 @@
|
|
|
11244
11270
|
"type": "array",
|
|
11245
11271
|
"description": "Arguments for the command.",
|
|
11246
11272
|
"items": {
|
|
11247
|
-
"
|
|
11273
|
+
"anyOf": [
|
|
11248
11274
|
{
|
|
11249
11275
|
"type": "string"
|
|
11250
11276
|
}
|
|
@@ -11261,7 +11287,7 @@
|
|
|
11261
11287
|
"type": "array",
|
|
11262
11288
|
"description": "Expected exit codes of the command. If the command's actual exit code isn't in this list, the step fails.",
|
|
11263
11289
|
"items": {
|
|
11264
|
-
"
|
|
11290
|
+
"anyOf": [
|
|
11265
11291
|
{
|
|
11266
11292
|
"type": "integer"
|
|
11267
11293
|
}
|
|
@@ -11432,7 +11458,7 @@
|
|
|
11432
11458
|
{
|
|
11433
11459
|
"type": "array",
|
|
11434
11460
|
"items": {
|
|
11435
|
-
"
|
|
11461
|
+
"anyOf": [
|
|
11436
11462
|
{
|
|
11437
11463
|
"type": "string"
|
|
11438
11464
|
}
|
|
@@ -11455,7 +11481,7 @@
|
|
|
11455
11481
|
{
|
|
11456
11482
|
"type": "array",
|
|
11457
11483
|
"items": {
|
|
11458
|
-
"
|
|
11484
|
+
"anyOf": [
|
|
11459
11485
|
{
|
|
11460
11486
|
"type": "string"
|
|
11461
11487
|
}
|
|
@@ -11486,7 +11512,7 @@
|
|
|
11486
11512
|
"description": "data-testid attribute of the element to find. Supports exact match or regex pattern using /pattern/ syntax."
|
|
11487
11513
|
},
|
|
11488
11514
|
"elementClass": {
|
|
11489
|
-
"
|
|
11515
|
+
"anyOf": [
|
|
11490
11516
|
{
|
|
11491
11517
|
"type": "string"
|
|
11492
11518
|
},
|
|
@@ -11503,7 +11529,7 @@
|
|
|
11503
11529
|
"type": "object",
|
|
11504
11530
|
"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.",
|
|
11505
11531
|
"additionalProperties": {
|
|
11506
|
-
"
|
|
11532
|
+
"anyOf": [
|
|
11507
11533
|
{
|
|
11508
11534
|
"type": "string"
|
|
11509
11535
|
},
|
|
@@ -11539,7 +11565,7 @@
|
|
|
11539
11565
|
{
|
|
11540
11566
|
"type": "array",
|
|
11541
11567
|
"items": {
|
|
11542
|
-
"
|
|
11568
|
+
"anyOf": [
|
|
11543
11569
|
{
|
|
11544
11570
|
"type": "string"
|
|
11545
11571
|
}
|
|
@@ -11562,7 +11588,7 @@
|
|
|
11562
11588
|
{
|
|
11563
11589
|
"type": "array",
|
|
11564
11590
|
"items": {
|
|
11565
|
-
"
|
|
11591
|
+
"anyOf": [
|
|
11566
11592
|
{
|
|
11567
11593
|
"type": "string"
|
|
11568
11594
|
}
|
|
@@ -11593,7 +11619,7 @@
|
|
|
11593
11619
|
"description": "data-testid attribute of the element to find. Supports exact match or regex pattern using /pattern/ syntax."
|
|
11594
11620
|
},
|
|
11595
11621
|
"elementClass": {
|
|
11596
|
-
"
|
|
11622
|
+
"anyOf": [
|
|
11597
11623
|
{
|
|
11598
11624
|
"type": "string"
|
|
11599
11625
|
},
|
|
@@ -11610,7 +11636,7 @@
|
|
|
11610
11636
|
"type": "object",
|
|
11611
11637
|
"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.",
|
|
11612
11638
|
"additionalProperties": {
|
|
11613
|
-
"
|
|
11639
|
+
"anyOf": [
|
|
11614
11640
|
{
|
|
11615
11641
|
"type": "string"
|
|
11616
11642
|
},
|
|
@@ -11850,7 +11876,7 @@
|
|
|
11850
11876
|
"description": "data-testid attribute of the element to find. Supports exact match or regex pattern using /pattern/ syntax."
|
|
11851
11877
|
},
|
|
11852
11878
|
"elementClass": {
|
|
11853
|
-
"
|
|
11879
|
+
"anyOf": [
|
|
11854
11880
|
{
|
|
11855
11881
|
"type": "string"
|
|
11856
11882
|
},
|
|
@@ -11867,7 +11893,7 @@
|
|
|
11867
11893
|
"type": "object",
|
|
11868
11894
|
"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.",
|
|
11869
11895
|
"additionalProperties": {
|
|
11870
|
-
"
|
|
11896
|
+
"anyOf": [
|
|
11871
11897
|
{
|
|
11872
11898
|
"type": "string"
|
|
11873
11899
|
},
|
|
@@ -12046,7 +12072,7 @@
|
|
|
12046
12072
|
"description": "data-testid attribute of the element to find. Supports exact match or regex pattern using /pattern/ syntax."
|
|
12047
12073
|
},
|
|
12048
12074
|
"elementClass": {
|
|
12049
|
-
"
|
|
12075
|
+
"anyOf": [
|
|
12050
12076
|
{
|
|
12051
12077
|
"type": "string"
|
|
12052
12078
|
},
|
|
@@ -12063,7 +12089,7 @@
|
|
|
12063
12089
|
"type": "object",
|
|
12064
12090
|
"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.",
|
|
12065
12091
|
"additionalProperties": {
|
|
12066
|
-
"
|
|
12092
|
+
"anyOf": [
|
|
12067
12093
|
{
|
|
12068
12094
|
"type": "string"
|
|
12069
12095
|
},
|
|
@@ -12181,7 +12207,7 @@
|
|
|
12181
12207
|
"description": "data-testid attribute of the element to find. Supports exact match or regex pattern using /pattern/ syntax."
|
|
12182
12208
|
},
|
|
12183
12209
|
"elementClass": {
|
|
12184
|
-
"
|
|
12210
|
+
"anyOf": [
|
|
12185
12211
|
{
|
|
12186
12212
|
"type": "string"
|
|
12187
12213
|
},
|
|
@@ -12198,7 +12224,7 @@
|
|
|
12198
12224
|
"type": "object",
|
|
12199
12225
|
"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.",
|
|
12200
12226
|
"additionalProperties": {
|
|
12201
|
-
"
|
|
12227
|
+
"anyOf": [
|
|
12202
12228
|
{
|
|
12203
12229
|
"type": "string"
|
|
12204
12230
|
},
|