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
|
@@ -147,7 +147,7 @@
|
|
|
147
147
|
"type": "array",
|
|
148
148
|
"description": "Contexts to run the test in. Overrides contexts defined at the config and spec levels.",
|
|
149
149
|
"items": {
|
|
150
|
-
"
|
|
150
|
+
"anyOf": [
|
|
151
151
|
{
|
|
152
152
|
"$schema": "http://json-schema.org/draft-07/schema#",
|
|
153
153
|
"title": "context",
|
|
@@ -1012,7 +1012,7 @@
|
|
|
1012
1012
|
{
|
|
1013
1013
|
"type": "array",
|
|
1014
1014
|
"items": {
|
|
1015
|
-
"
|
|
1015
|
+
"anyOf": [
|
|
1016
1016
|
{
|
|
1017
1017
|
"type": "integer"
|
|
1018
1018
|
}
|
|
@@ -1075,7 +1075,7 @@
|
|
|
1075
1075
|
{
|
|
1076
1076
|
"type": "array",
|
|
1077
1077
|
"items": {
|
|
1078
|
-
"
|
|
1078
|
+
"anyOf": [
|
|
1079
1079
|
{
|
|
1080
1080
|
"type": "integer"
|
|
1081
1081
|
}
|
|
@@ -1259,7 +1259,7 @@
|
|
|
1259
1259
|
"description": "data-testid attribute of the element to click. Supports exact match or regex pattern using /pattern/ syntax."
|
|
1260
1260
|
},
|
|
1261
1261
|
"elementClass": {
|
|
1262
|
-
"
|
|
1262
|
+
"anyOf": [
|
|
1263
1263
|
{
|
|
1264
1264
|
"type": "string"
|
|
1265
1265
|
},
|
|
@@ -1276,7 +1276,7 @@
|
|
|
1276
1276
|
"type": "object",
|
|
1277
1277
|
"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.",
|
|
1278
1278
|
"additionalProperties": {
|
|
1279
|
-
"
|
|
1279
|
+
"anyOf": [
|
|
1280
1280
|
{
|
|
1281
1281
|
"type": "string"
|
|
1282
1282
|
},
|
|
@@ -1382,7 +1382,7 @@
|
|
|
1382
1382
|
"description": "data-testid attribute of the element to click. Supports exact match or regex pattern using /pattern/ syntax."
|
|
1383
1383
|
},
|
|
1384
1384
|
"elementClass": {
|
|
1385
|
-
"
|
|
1385
|
+
"anyOf": [
|
|
1386
1386
|
{
|
|
1387
1387
|
"type": "string"
|
|
1388
1388
|
},
|
|
@@ -1399,7 +1399,7 @@
|
|
|
1399
1399
|
"type": "object",
|
|
1400
1400
|
"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.",
|
|
1401
1401
|
"additionalProperties": {
|
|
1402
|
-
"
|
|
1402
|
+
"anyOf": [
|
|
1403
1403
|
{
|
|
1404
1404
|
"type": "string"
|
|
1405
1405
|
},
|
|
@@ -1574,7 +1574,7 @@
|
|
|
1574
1574
|
"description": "data-testid attribute of the element to find. Supports exact match or regex pattern using /pattern/ syntax."
|
|
1575
1575
|
},
|
|
1576
1576
|
"elementClass": {
|
|
1577
|
-
"
|
|
1577
|
+
"anyOf": [
|
|
1578
1578
|
{
|
|
1579
1579
|
"type": "string"
|
|
1580
1580
|
},
|
|
@@ -1591,7 +1591,7 @@
|
|
|
1591
1591
|
"type": "object",
|
|
1592
1592
|
"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.",
|
|
1593
1593
|
"additionalProperties": {
|
|
1594
|
-
"
|
|
1594
|
+
"anyOf": [
|
|
1595
1595
|
{
|
|
1596
1596
|
"type": "string"
|
|
1597
1597
|
},
|
|
@@ -1698,7 +1698,7 @@
|
|
|
1698
1698
|
"description": "data-testid attribute of the element to click. Supports exact match or regex pattern using /pattern/ syntax."
|
|
1699
1699
|
},
|
|
1700
1700
|
"elementClass": {
|
|
1701
|
-
"
|
|
1701
|
+
"anyOf": [
|
|
1702
1702
|
{
|
|
1703
1703
|
"type": "string"
|
|
1704
1704
|
},
|
|
@@ -1715,7 +1715,7 @@
|
|
|
1715
1715
|
"type": "object",
|
|
1716
1716
|
"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.",
|
|
1717
1717
|
"additionalProperties": {
|
|
1718
|
-
"
|
|
1718
|
+
"anyOf": [
|
|
1719
1719
|
{
|
|
1720
1720
|
"type": "string"
|
|
1721
1721
|
},
|
|
@@ -1821,7 +1821,7 @@
|
|
|
1821
1821
|
"description": "data-testid attribute of the element to click. Supports exact match or regex pattern using /pattern/ syntax."
|
|
1822
1822
|
},
|
|
1823
1823
|
"elementClass": {
|
|
1824
|
-
"
|
|
1824
|
+
"anyOf": [
|
|
1825
1825
|
{
|
|
1826
1826
|
"type": "string"
|
|
1827
1827
|
},
|
|
@@ -1838,7 +1838,7 @@
|
|
|
1838
1838
|
"type": "object",
|
|
1839
1839
|
"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.",
|
|
1840
1840
|
"additionalProperties": {
|
|
1841
|
-
"
|
|
1841
|
+
"anyOf": [
|
|
1842
1842
|
{
|
|
1843
1843
|
"type": "string"
|
|
1844
1844
|
},
|
|
@@ -1908,7 +1908,7 @@
|
|
|
1908
1908
|
{
|
|
1909
1909
|
"type": "array",
|
|
1910
1910
|
"items": {
|
|
1911
|
-
"
|
|
1911
|
+
"anyOf": [
|
|
1912
1912
|
{
|
|
1913
1913
|
"type": "string"
|
|
1914
1914
|
}
|
|
@@ -1931,7 +1931,7 @@
|
|
|
1931
1931
|
{
|
|
1932
1932
|
"type": "array",
|
|
1933
1933
|
"items": {
|
|
1934
|
-
"
|
|
1934
|
+
"anyOf": [
|
|
1935
1935
|
{
|
|
1936
1936
|
"type": "string"
|
|
1937
1937
|
}
|
|
@@ -1962,7 +1962,7 @@
|
|
|
1962
1962
|
"description": "data-testid attribute of the element to find. Supports exact match or regex pattern using /pattern/ syntax."
|
|
1963
1963
|
},
|
|
1964
1964
|
"elementClass": {
|
|
1965
|
-
"
|
|
1965
|
+
"anyOf": [
|
|
1966
1966
|
{
|
|
1967
1967
|
"type": "string"
|
|
1968
1968
|
},
|
|
@@ -1979,7 +1979,7 @@
|
|
|
1979
1979
|
"type": "object",
|
|
1980
1980
|
"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.",
|
|
1981
1981
|
"additionalProperties": {
|
|
1982
|
-
"
|
|
1982
|
+
"anyOf": [
|
|
1983
1983
|
{
|
|
1984
1984
|
"type": "string"
|
|
1985
1985
|
},
|
|
@@ -2015,7 +2015,7 @@
|
|
|
2015
2015
|
{
|
|
2016
2016
|
"type": "array",
|
|
2017
2017
|
"items": {
|
|
2018
|
-
"
|
|
2018
|
+
"anyOf": [
|
|
2019
2019
|
{
|
|
2020
2020
|
"type": "string"
|
|
2021
2021
|
}
|
|
@@ -2038,7 +2038,7 @@
|
|
|
2038
2038
|
{
|
|
2039
2039
|
"type": "array",
|
|
2040
2040
|
"items": {
|
|
2041
|
-
"
|
|
2041
|
+
"anyOf": [
|
|
2042
2042
|
{
|
|
2043
2043
|
"type": "string"
|
|
2044
2044
|
}
|
|
@@ -2069,7 +2069,7 @@
|
|
|
2069
2069
|
"description": "data-testid attribute of the element to find. Supports exact match or regex pattern using /pattern/ syntax."
|
|
2070
2070
|
},
|
|
2071
2071
|
"elementClass": {
|
|
2072
|
-
"
|
|
2072
|
+
"anyOf": [
|
|
2073
2073
|
{
|
|
2074
2074
|
"type": "string"
|
|
2075
2075
|
},
|
|
@@ -2086,7 +2086,7 @@
|
|
|
2086
2086
|
"type": "object",
|
|
2087
2087
|
"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.",
|
|
2088
2088
|
"additionalProperties": {
|
|
2089
|
-
"
|
|
2089
|
+
"anyOf": [
|
|
2090
2090
|
{
|
|
2091
2091
|
"type": "string"
|
|
2092
2092
|
},
|
|
@@ -2223,7 +2223,7 @@
|
|
|
2223
2223
|
"description": "data-testid attribute of the element to find. Supports exact match or regex pattern using /pattern/ syntax."
|
|
2224
2224
|
},
|
|
2225
2225
|
"elementClass": {
|
|
2226
|
-
"
|
|
2226
|
+
"anyOf": [
|
|
2227
2227
|
{
|
|
2228
2228
|
"type": "string"
|
|
2229
2229
|
},
|
|
@@ -2240,7 +2240,7 @@
|
|
|
2240
2240
|
"type": "object",
|
|
2241
2241
|
"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.",
|
|
2242
2242
|
"additionalProperties": {
|
|
2243
|
-
"
|
|
2243
|
+
"anyOf": [
|
|
2244
2244
|
{
|
|
2245
2245
|
"type": "string"
|
|
2246
2246
|
},
|
|
@@ -2347,7 +2347,7 @@
|
|
|
2347
2347
|
"description": "data-testid attribute of the element to click. Supports exact match or regex pattern using /pattern/ syntax."
|
|
2348
2348
|
},
|
|
2349
2349
|
"elementClass": {
|
|
2350
|
-
"
|
|
2350
|
+
"anyOf": [
|
|
2351
2351
|
{
|
|
2352
2352
|
"type": "string"
|
|
2353
2353
|
},
|
|
@@ -2364,7 +2364,7 @@
|
|
|
2364
2364
|
"type": "object",
|
|
2365
2365
|
"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.",
|
|
2366
2366
|
"additionalProperties": {
|
|
2367
|
-
"
|
|
2367
|
+
"anyOf": [
|
|
2368
2368
|
{
|
|
2369
2369
|
"type": "string"
|
|
2370
2370
|
},
|
|
@@ -2470,7 +2470,7 @@
|
|
|
2470
2470
|
"description": "data-testid attribute of the element to click. Supports exact match or regex pattern using /pattern/ syntax."
|
|
2471
2471
|
},
|
|
2472
2472
|
"elementClass": {
|
|
2473
|
-
"
|
|
2473
|
+
"anyOf": [
|
|
2474
2474
|
{
|
|
2475
2475
|
"type": "string"
|
|
2476
2476
|
},
|
|
@@ -2487,7 +2487,7 @@
|
|
|
2487
2487
|
"type": "object",
|
|
2488
2488
|
"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.",
|
|
2489
2489
|
"additionalProperties": {
|
|
2490
|
-
"
|
|
2490
|
+
"anyOf": [
|
|
2491
2491
|
{
|
|
2492
2492
|
"type": "string"
|
|
2493
2493
|
},
|
|
@@ -2557,7 +2557,7 @@
|
|
|
2557
2557
|
{
|
|
2558
2558
|
"type": "array",
|
|
2559
2559
|
"items": {
|
|
2560
|
-
"
|
|
2560
|
+
"anyOf": [
|
|
2561
2561
|
{
|
|
2562
2562
|
"type": "string"
|
|
2563
2563
|
}
|
|
@@ -2580,7 +2580,7 @@
|
|
|
2580
2580
|
{
|
|
2581
2581
|
"type": "array",
|
|
2582
2582
|
"items": {
|
|
2583
|
-
"
|
|
2583
|
+
"anyOf": [
|
|
2584
2584
|
{
|
|
2585
2585
|
"type": "string"
|
|
2586
2586
|
}
|
|
@@ -2611,7 +2611,7 @@
|
|
|
2611
2611
|
"description": "data-testid attribute of the element to find. Supports exact match or regex pattern using /pattern/ syntax."
|
|
2612
2612
|
},
|
|
2613
2613
|
"elementClass": {
|
|
2614
|
-
"
|
|
2614
|
+
"anyOf": [
|
|
2615
2615
|
{
|
|
2616
2616
|
"type": "string"
|
|
2617
2617
|
},
|
|
@@ -2628,7 +2628,7 @@
|
|
|
2628
2628
|
"type": "object",
|
|
2629
2629
|
"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.",
|
|
2630
2630
|
"additionalProperties": {
|
|
2631
|
-
"
|
|
2631
|
+
"anyOf": [
|
|
2632
2632
|
{
|
|
2633
2633
|
"type": "string"
|
|
2634
2634
|
},
|
|
@@ -2664,7 +2664,7 @@
|
|
|
2664
2664
|
{
|
|
2665
2665
|
"type": "array",
|
|
2666
2666
|
"items": {
|
|
2667
|
-
"
|
|
2667
|
+
"anyOf": [
|
|
2668
2668
|
{
|
|
2669
2669
|
"type": "string"
|
|
2670
2670
|
}
|
|
@@ -2687,7 +2687,7 @@
|
|
|
2687
2687
|
{
|
|
2688
2688
|
"type": "array",
|
|
2689
2689
|
"items": {
|
|
2690
|
-
"
|
|
2690
|
+
"anyOf": [
|
|
2691
2691
|
{
|
|
2692
2692
|
"type": "string"
|
|
2693
2693
|
}
|
|
@@ -2718,7 +2718,7 @@
|
|
|
2718
2718
|
"description": "data-testid attribute of the element to find. Supports exact match or regex pattern using /pattern/ syntax."
|
|
2719
2719
|
},
|
|
2720
2720
|
"elementClass": {
|
|
2721
|
-
"
|
|
2721
|
+
"anyOf": [
|
|
2722
2722
|
{
|
|
2723
2723
|
"type": "string"
|
|
2724
2724
|
},
|
|
@@ -2735,7 +2735,7 @@
|
|
|
2735
2735
|
"type": "object",
|
|
2736
2736
|
"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.",
|
|
2737
2737
|
"additionalProperties": {
|
|
2738
|
-
"
|
|
2738
|
+
"anyOf": [
|
|
2739
2739
|
{
|
|
2740
2740
|
"type": "string"
|
|
2741
2741
|
},
|
|
@@ -2838,6 +2838,19 @@
|
|
|
2838
2838
|
],
|
|
2839
2839
|
"inputDelay": 100
|
|
2840
2840
|
}
|
|
2841
|
+
},
|
|
2842
|
+
{
|
|
2843
|
+
"elementId": "/^user-[0-9]+$/",
|
|
2844
|
+
"elementClass": [
|
|
2845
|
+
"admin",
|
|
2846
|
+
"/^level-[1-5]$/"
|
|
2847
|
+
],
|
|
2848
|
+
"elementAttribute": {
|
|
2849
|
+
"data-active": true,
|
|
2850
|
+
"data-score": "/^[0-9]+$/"
|
|
2851
|
+
},
|
|
2852
|
+
"timeout": 8000,
|
|
2853
|
+
"moveTo": false
|
|
2841
2854
|
}
|
|
2842
2855
|
]
|
|
2843
2856
|
}
|
|
@@ -3307,7 +3320,7 @@
|
|
|
3307
3320
|
"description": "Accepted status codes. If the specified URL returns a code other than what is specified here, the action fails.",
|
|
3308
3321
|
"type": "array",
|
|
3309
3322
|
"items": {
|
|
3310
|
-
"
|
|
3323
|
+
"anyOf": [
|
|
3311
3324
|
{
|
|
3312
3325
|
"type": "integer"
|
|
3313
3326
|
}
|
|
@@ -3706,7 +3719,7 @@
|
|
|
3706
3719
|
"description": "Accepted status codes. If the specified URL returns a code other than what is specified here, the action fails.",
|
|
3707
3720
|
"type": "array",
|
|
3708
3721
|
"items": {
|
|
3709
|
-
"
|
|
3722
|
+
"anyOf": [
|
|
3710
3723
|
{
|
|
3711
3724
|
"type": "integer"
|
|
3712
3725
|
}
|
|
@@ -4167,7 +4180,7 @@
|
|
|
4167
4180
|
"type": "array",
|
|
4168
4181
|
"description": "Arguments for the command.",
|
|
4169
4182
|
"items": {
|
|
4170
|
-
"
|
|
4183
|
+
"anyOf": [
|
|
4171
4184
|
{
|
|
4172
4185
|
"type": "string"
|
|
4173
4186
|
}
|
|
@@ -4184,7 +4197,7 @@
|
|
|
4184
4197
|
"type": "array",
|
|
4185
4198
|
"description": "Expected exit codes of the command. If the command's actual exit code isn't in this list, the step fails.",
|
|
4186
4199
|
"items": {
|
|
4187
|
-
"
|
|
4200
|
+
"anyOf": [
|
|
4188
4201
|
{
|
|
4189
4202
|
"type": "integer"
|
|
4190
4203
|
}
|
|
@@ -4257,7 +4270,7 @@
|
|
|
4257
4270
|
"type": "array",
|
|
4258
4271
|
"description": "Arguments for the command.",
|
|
4259
4272
|
"items": {
|
|
4260
|
-
"
|
|
4273
|
+
"anyOf": [
|
|
4261
4274
|
{
|
|
4262
4275
|
"type": "string"
|
|
4263
4276
|
}
|
|
@@ -4274,7 +4287,7 @@
|
|
|
4274
4287
|
"type": "array",
|
|
4275
4288
|
"description": "Expected exit codes of the command. If the command's actual exit code isn't in this list, the step fails.",
|
|
4276
4289
|
"items": {
|
|
4277
|
-
"
|
|
4290
|
+
"anyOf": [
|
|
4278
4291
|
{
|
|
4279
4292
|
"type": "integer"
|
|
4280
4293
|
}
|
|
@@ -4475,7 +4488,7 @@
|
|
|
4475
4488
|
"type": "array",
|
|
4476
4489
|
"description": "Arguments for the command.",
|
|
4477
4490
|
"items": {
|
|
4478
|
-
"
|
|
4491
|
+
"anyOf": [
|
|
4479
4492
|
{
|
|
4480
4493
|
"type": "string"
|
|
4481
4494
|
}
|
|
@@ -4492,7 +4505,7 @@
|
|
|
4492
4505
|
"type": "array",
|
|
4493
4506
|
"description": "Expected exit codes of the command. If the command's actual exit code isn't in this list, the step fails.",
|
|
4494
4507
|
"items": {
|
|
4495
|
-
"
|
|
4508
|
+
"anyOf": [
|
|
4496
4509
|
{
|
|
4497
4510
|
"type": "integer"
|
|
4498
4511
|
}
|
|
@@ -4566,7 +4579,7 @@
|
|
|
4566
4579
|
"type": "array",
|
|
4567
4580
|
"description": "Arguments for the command.",
|
|
4568
4581
|
"items": {
|
|
4569
|
-
"
|
|
4582
|
+
"anyOf": [
|
|
4570
4583
|
{
|
|
4571
4584
|
"type": "string"
|
|
4572
4585
|
}
|
|
@@ -4583,7 +4596,7 @@
|
|
|
4583
4596
|
"type": "array",
|
|
4584
4597
|
"description": "Expected exit codes of the command. If the command's actual exit code isn't in this list, the step fails.",
|
|
4585
4598
|
"items": {
|
|
4586
|
-
"
|
|
4599
|
+
"anyOf": [
|
|
4587
4600
|
{
|
|
4588
4601
|
"type": "integer"
|
|
4589
4602
|
}
|
|
@@ -4754,7 +4767,7 @@
|
|
|
4754
4767
|
{
|
|
4755
4768
|
"type": "array",
|
|
4756
4769
|
"items": {
|
|
4757
|
-
"
|
|
4770
|
+
"anyOf": [
|
|
4758
4771
|
{
|
|
4759
4772
|
"type": "string"
|
|
4760
4773
|
}
|
|
@@ -4777,7 +4790,7 @@
|
|
|
4777
4790
|
{
|
|
4778
4791
|
"type": "array",
|
|
4779
4792
|
"items": {
|
|
4780
|
-
"
|
|
4793
|
+
"anyOf": [
|
|
4781
4794
|
{
|
|
4782
4795
|
"type": "string"
|
|
4783
4796
|
}
|
|
@@ -4808,7 +4821,7 @@
|
|
|
4808
4821
|
"description": "data-testid attribute of the element to find. Supports exact match or regex pattern using /pattern/ syntax."
|
|
4809
4822
|
},
|
|
4810
4823
|
"elementClass": {
|
|
4811
|
-
"
|
|
4824
|
+
"anyOf": [
|
|
4812
4825
|
{
|
|
4813
4826
|
"type": "string"
|
|
4814
4827
|
},
|
|
@@ -4825,7 +4838,7 @@
|
|
|
4825
4838
|
"type": "object",
|
|
4826
4839
|
"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.",
|
|
4827
4840
|
"additionalProperties": {
|
|
4828
|
-
"
|
|
4841
|
+
"anyOf": [
|
|
4829
4842
|
{
|
|
4830
4843
|
"type": "string"
|
|
4831
4844
|
},
|
|
@@ -4861,7 +4874,7 @@
|
|
|
4861
4874
|
{
|
|
4862
4875
|
"type": "array",
|
|
4863
4876
|
"items": {
|
|
4864
|
-
"
|
|
4877
|
+
"anyOf": [
|
|
4865
4878
|
{
|
|
4866
4879
|
"type": "string"
|
|
4867
4880
|
}
|
|
@@ -4884,7 +4897,7 @@
|
|
|
4884
4897
|
{
|
|
4885
4898
|
"type": "array",
|
|
4886
4899
|
"items": {
|
|
4887
|
-
"
|
|
4900
|
+
"anyOf": [
|
|
4888
4901
|
{
|
|
4889
4902
|
"type": "string"
|
|
4890
4903
|
}
|
|
@@ -4915,7 +4928,7 @@
|
|
|
4915
4928
|
"description": "data-testid attribute of the element to find. Supports exact match or regex pattern using /pattern/ syntax."
|
|
4916
4929
|
},
|
|
4917
4930
|
"elementClass": {
|
|
4918
|
-
"
|
|
4931
|
+
"anyOf": [
|
|
4919
4932
|
{
|
|
4920
4933
|
"type": "string"
|
|
4921
4934
|
},
|
|
@@ -4932,7 +4945,7 @@
|
|
|
4932
4945
|
"type": "object",
|
|
4933
4946
|
"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.",
|
|
4934
4947
|
"additionalProperties": {
|
|
4935
|
-
"
|
|
4948
|
+
"anyOf": [
|
|
4936
4949
|
{
|
|
4937
4950
|
"type": "string"
|
|
4938
4951
|
},
|
|
@@ -5172,7 +5185,7 @@
|
|
|
5172
5185
|
"description": "data-testid attribute of the element to find. Supports exact match or regex pattern using /pattern/ syntax."
|
|
5173
5186
|
},
|
|
5174
5187
|
"elementClass": {
|
|
5175
|
-
"
|
|
5188
|
+
"anyOf": [
|
|
5176
5189
|
{
|
|
5177
5190
|
"type": "string"
|
|
5178
5191
|
},
|
|
@@ -5189,7 +5202,7 @@
|
|
|
5189
5202
|
"type": "object",
|
|
5190
5203
|
"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.",
|
|
5191
5204
|
"additionalProperties": {
|
|
5192
|
-
"
|
|
5205
|
+
"anyOf": [
|
|
5193
5206
|
{
|
|
5194
5207
|
"type": "string"
|
|
5195
5208
|
},
|
|
@@ -5368,7 +5381,7 @@
|
|
|
5368
5381
|
"description": "data-testid attribute of the element to find. Supports exact match or regex pattern using /pattern/ syntax."
|
|
5369
5382
|
},
|
|
5370
5383
|
"elementClass": {
|
|
5371
|
-
"
|
|
5384
|
+
"anyOf": [
|
|
5372
5385
|
{
|
|
5373
5386
|
"type": "string"
|
|
5374
5387
|
},
|
|
@@ -5385,7 +5398,7 @@
|
|
|
5385
5398
|
"type": "object",
|
|
5386
5399
|
"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.",
|
|
5387
5400
|
"additionalProperties": {
|
|
5388
|
-
"
|
|
5401
|
+
"anyOf": [
|
|
5389
5402
|
{
|
|
5390
5403
|
"type": "string"
|
|
5391
5404
|
},
|
|
@@ -5503,7 +5516,7 @@
|
|
|
5503
5516
|
"description": "data-testid attribute of the element to find. Supports exact match or regex pattern using /pattern/ syntax."
|
|
5504
5517
|
},
|
|
5505
5518
|
"elementClass": {
|
|
5506
|
-
"
|
|
5519
|
+
"anyOf": [
|
|
5507
5520
|
{
|
|
5508
5521
|
"type": "string"
|
|
5509
5522
|
},
|
|
@@ -5520,7 +5533,7 @@
|
|
|
5520
5533
|
"type": "object",
|
|
5521
5534
|
"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.",
|
|
5522
5535
|
"additionalProperties": {
|
|
5523
|
-
"
|
|
5536
|
+
"anyOf": [
|
|
5524
5537
|
{
|
|
5525
5538
|
"type": "string"
|
|
5526
5539
|
},
|
|
@@ -7458,7 +7471,7 @@
|
|
|
7458
7471
|
"type": "array",
|
|
7459
7472
|
"description": "Arguments for the command.",
|
|
7460
7473
|
"items": {
|
|
7461
|
-
"
|
|
7474
|
+
"anyOf": [
|
|
7462
7475
|
{
|
|
7463
7476
|
"type": "string"
|
|
7464
7477
|
}
|
|
@@ -7475,7 +7488,7 @@
|
|
|
7475
7488
|
"type": "array",
|
|
7476
7489
|
"description": "Expected exit codes of the command. If the command's actual exit code isn't in this list, the step fails.",
|
|
7477
7490
|
"items": {
|
|
7478
|
-
"
|
|
7491
|
+
"anyOf": [
|
|
7479
7492
|
{
|
|
7480
7493
|
"type": "integer"
|
|
7481
7494
|
}
|
|
@@ -7548,7 +7561,7 @@
|
|
|
7548
7561
|
"type": "array",
|
|
7549
7562
|
"description": "Arguments for the command.",
|
|
7550
7563
|
"items": {
|
|
7551
|
-
"
|
|
7564
|
+
"anyOf": [
|
|
7552
7565
|
{
|
|
7553
7566
|
"type": "string"
|
|
7554
7567
|
}
|
|
@@ -7565,7 +7578,7 @@
|
|
|
7565
7578
|
"type": "array",
|
|
7566
7579
|
"description": "Expected exit codes of the command. If the command's actual exit code isn't in this list, the step fails.",
|
|
7567
7580
|
"items": {
|
|
7568
|
-
"
|
|
7581
|
+
"anyOf": [
|
|
7569
7582
|
{
|
|
7570
7583
|
"type": "integer"
|
|
7571
7584
|
}
|
|
@@ -8307,7 +8320,7 @@
|
|
|
8307
8320
|
{
|
|
8308
8321
|
"type": "array",
|
|
8309
8322
|
"items": {
|
|
8310
|
-
"
|
|
8323
|
+
"anyOf": [
|
|
8311
8324
|
{
|
|
8312
8325
|
"type": "integer"
|
|
8313
8326
|
}
|
|
@@ -8370,7 +8383,7 @@
|
|
|
8370
8383
|
{
|
|
8371
8384
|
"type": "array",
|
|
8372
8385
|
"items": {
|
|
8373
|
-
"
|
|
8386
|
+
"anyOf": [
|
|
8374
8387
|
{
|
|
8375
8388
|
"type": "integer"
|
|
8376
8389
|
}
|
|
@@ -8554,7 +8567,7 @@
|
|
|
8554
8567
|
"description": "data-testid attribute of the element to click. Supports exact match or regex pattern using /pattern/ syntax."
|
|
8555
8568
|
},
|
|
8556
8569
|
"elementClass": {
|
|
8557
|
-
"
|
|
8570
|
+
"anyOf": [
|
|
8558
8571
|
{
|
|
8559
8572
|
"type": "string"
|
|
8560
8573
|
},
|
|
@@ -8571,7 +8584,7 @@
|
|
|
8571
8584
|
"type": "object",
|
|
8572
8585
|
"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.",
|
|
8573
8586
|
"additionalProperties": {
|
|
8574
|
-
"
|
|
8587
|
+
"anyOf": [
|
|
8575
8588
|
{
|
|
8576
8589
|
"type": "string"
|
|
8577
8590
|
},
|
|
@@ -8677,7 +8690,7 @@
|
|
|
8677
8690
|
"description": "data-testid attribute of the element to click. Supports exact match or regex pattern using /pattern/ syntax."
|
|
8678
8691
|
},
|
|
8679
8692
|
"elementClass": {
|
|
8680
|
-
"
|
|
8693
|
+
"anyOf": [
|
|
8681
8694
|
{
|
|
8682
8695
|
"type": "string"
|
|
8683
8696
|
},
|
|
@@ -8694,7 +8707,7 @@
|
|
|
8694
8707
|
"type": "object",
|
|
8695
8708
|
"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.",
|
|
8696
8709
|
"additionalProperties": {
|
|
8697
|
-
"
|
|
8710
|
+
"anyOf": [
|
|
8698
8711
|
{
|
|
8699
8712
|
"type": "string"
|
|
8700
8713
|
},
|
|
@@ -8869,7 +8882,7 @@
|
|
|
8869
8882
|
"description": "data-testid attribute of the element to find. Supports exact match or regex pattern using /pattern/ syntax."
|
|
8870
8883
|
},
|
|
8871
8884
|
"elementClass": {
|
|
8872
|
-
"
|
|
8885
|
+
"anyOf": [
|
|
8873
8886
|
{
|
|
8874
8887
|
"type": "string"
|
|
8875
8888
|
},
|
|
@@ -8886,7 +8899,7 @@
|
|
|
8886
8899
|
"type": "object",
|
|
8887
8900
|
"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.",
|
|
8888
8901
|
"additionalProperties": {
|
|
8889
|
-
"
|
|
8902
|
+
"anyOf": [
|
|
8890
8903
|
{
|
|
8891
8904
|
"type": "string"
|
|
8892
8905
|
},
|
|
@@ -8993,7 +9006,7 @@
|
|
|
8993
9006
|
"description": "data-testid attribute of the element to click. Supports exact match or regex pattern using /pattern/ syntax."
|
|
8994
9007
|
},
|
|
8995
9008
|
"elementClass": {
|
|
8996
|
-
"
|
|
9009
|
+
"anyOf": [
|
|
8997
9010
|
{
|
|
8998
9011
|
"type": "string"
|
|
8999
9012
|
},
|
|
@@ -9010,7 +9023,7 @@
|
|
|
9010
9023
|
"type": "object",
|
|
9011
9024
|
"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.",
|
|
9012
9025
|
"additionalProperties": {
|
|
9013
|
-
"
|
|
9026
|
+
"anyOf": [
|
|
9014
9027
|
{
|
|
9015
9028
|
"type": "string"
|
|
9016
9029
|
},
|
|
@@ -9116,7 +9129,7 @@
|
|
|
9116
9129
|
"description": "data-testid attribute of the element to click. Supports exact match or regex pattern using /pattern/ syntax."
|
|
9117
9130
|
},
|
|
9118
9131
|
"elementClass": {
|
|
9119
|
-
"
|
|
9132
|
+
"anyOf": [
|
|
9120
9133
|
{
|
|
9121
9134
|
"type": "string"
|
|
9122
9135
|
},
|
|
@@ -9133,7 +9146,7 @@
|
|
|
9133
9146
|
"type": "object",
|
|
9134
9147
|
"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.",
|
|
9135
9148
|
"additionalProperties": {
|
|
9136
|
-
"
|
|
9149
|
+
"anyOf": [
|
|
9137
9150
|
{
|
|
9138
9151
|
"type": "string"
|
|
9139
9152
|
},
|
|
@@ -9203,7 +9216,7 @@
|
|
|
9203
9216
|
{
|
|
9204
9217
|
"type": "array",
|
|
9205
9218
|
"items": {
|
|
9206
|
-
"
|
|
9219
|
+
"anyOf": [
|
|
9207
9220
|
{
|
|
9208
9221
|
"type": "string"
|
|
9209
9222
|
}
|
|
@@ -9226,7 +9239,7 @@
|
|
|
9226
9239
|
{
|
|
9227
9240
|
"type": "array",
|
|
9228
9241
|
"items": {
|
|
9229
|
-
"
|
|
9242
|
+
"anyOf": [
|
|
9230
9243
|
{
|
|
9231
9244
|
"type": "string"
|
|
9232
9245
|
}
|
|
@@ -9257,7 +9270,7 @@
|
|
|
9257
9270
|
"description": "data-testid attribute of the element to find. Supports exact match or regex pattern using /pattern/ syntax."
|
|
9258
9271
|
},
|
|
9259
9272
|
"elementClass": {
|
|
9260
|
-
"
|
|
9273
|
+
"anyOf": [
|
|
9261
9274
|
{
|
|
9262
9275
|
"type": "string"
|
|
9263
9276
|
},
|
|
@@ -9274,7 +9287,7 @@
|
|
|
9274
9287
|
"type": "object",
|
|
9275
9288
|
"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.",
|
|
9276
9289
|
"additionalProperties": {
|
|
9277
|
-
"
|
|
9290
|
+
"anyOf": [
|
|
9278
9291
|
{
|
|
9279
9292
|
"type": "string"
|
|
9280
9293
|
},
|
|
@@ -9310,7 +9323,7 @@
|
|
|
9310
9323
|
{
|
|
9311
9324
|
"type": "array",
|
|
9312
9325
|
"items": {
|
|
9313
|
-
"
|
|
9326
|
+
"anyOf": [
|
|
9314
9327
|
{
|
|
9315
9328
|
"type": "string"
|
|
9316
9329
|
}
|
|
@@ -9333,7 +9346,7 @@
|
|
|
9333
9346
|
{
|
|
9334
9347
|
"type": "array",
|
|
9335
9348
|
"items": {
|
|
9336
|
-
"
|
|
9349
|
+
"anyOf": [
|
|
9337
9350
|
{
|
|
9338
9351
|
"type": "string"
|
|
9339
9352
|
}
|
|
@@ -9364,7 +9377,7 @@
|
|
|
9364
9377
|
"description": "data-testid attribute of the element to find. Supports exact match or regex pattern using /pattern/ syntax."
|
|
9365
9378
|
},
|
|
9366
9379
|
"elementClass": {
|
|
9367
|
-
"
|
|
9380
|
+
"anyOf": [
|
|
9368
9381
|
{
|
|
9369
9382
|
"type": "string"
|
|
9370
9383
|
},
|
|
@@ -9381,7 +9394,7 @@
|
|
|
9381
9394
|
"type": "object",
|
|
9382
9395
|
"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.",
|
|
9383
9396
|
"additionalProperties": {
|
|
9384
|
-
"
|
|
9397
|
+
"anyOf": [
|
|
9385
9398
|
{
|
|
9386
9399
|
"type": "string"
|
|
9387
9400
|
},
|
|
@@ -9518,7 +9531,7 @@
|
|
|
9518
9531
|
"description": "data-testid attribute of the element to find. Supports exact match or regex pattern using /pattern/ syntax."
|
|
9519
9532
|
},
|
|
9520
9533
|
"elementClass": {
|
|
9521
|
-
"
|
|
9534
|
+
"anyOf": [
|
|
9522
9535
|
{
|
|
9523
9536
|
"type": "string"
|
|
9524
9537
|
},
|
|
@@ -9535,7 +9548,7 @@
|
|
|
9535
9548
|
"type": "object",
|
|
9536
9549
|
"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.",
|
|
9537
9550
|
"additionalProperties": {
|
|
9538
|
-
"
|
|
9551
|
+
"anyOf": [
|
|
9539
9552
|
{
|
|
9540
9553
|
"type": "string"
|
|
9541
9554
|
},
|
|
@@ -9642,7 +9655,7 @@
|
|
|
9642
9655
|
"description": "data-testid attribute of the element to click. Supports exact match or regex pattern using /pattern/ syntax."
|
|
9643
9656
|
},
|
|
9644
9657
|
"elementClass": {
|
|
9645
|
-
"
|
|
9658
|
+
"anyOf": [
|
|
9646
9659
|
{
|
|
9647
9660
|
"type": "string"
|
|
9648
9661
|
},
|
|
@@ -9659,7 +9672,7 @@
|
|
|
9659
9672
|
"type": "object",
|
|
9660
9673
|
"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.",
|
|
9661
9674
|
"additionalProperties": {
|
|
9662
|
-
"
|
|
9675
|
+
"anyOf": [
|
|
9663
9676
|
{
|
|
9664
9677
|
"type": "string"
|
|
9665
9678
|
},
|
|
@@ -9765,7 +9778,7 @@
|
|
|
9765
9778
|
"description": "data-testid attribute of the element to click. Supports exact match or regex pattern using /pattern/ syntax."
|
|
9766
9779
|
},
|
|
9767
9780
|
"elementClass": {
|
|
9768
|
-
"
|
|
9781
|
+
"anyOf": [
|
|
9769
9782
|
{
|
|
9770
9783
|
"type": "string"
|
|
9771
9784
|
},
|
|
@@ -9782,7 +9795,7 @@
|
|
|
9782
9795
|
"type": "object",
|
|
9783
9796
|
"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.",
|
|
9784
9797
|
"additionalProperties": {
|
|
9785
|
-
"
|
|
9798
|
+
"anyOf": [
|
|
9786
9799
|
{
|
|
9787
9800
|
"type": "string"
|
|
9788
9801
|
},
|
|
@@ -9852,7 +9865,7 @@
|
|
|
9852
9865
|
{
|
|
9853
9866
|
"type": "array",
|
|
9854
9867
|
"items": {
|
|
9855
|
-
"
|
|
9868
|
+
"anyOf": [
|
|
9856
9869
|
{
|
|
9857
9870
|
"type": "string"
|
|
9858
9871
|
}
|
|
@@ -9875,7 +9888,7 @@
|
|
|
9875
9888
|
{
|
|
9876
9889
|
"type": "array",
|
|
9877
9890
|
"items": {
|
|
9878
|
-
"
|
|
9891
|
+
"anyOf": [
|
|
9879
9892
|
{
|
|
9880
9893
|
"type": "string"
|
|
9881
9894
|
}
|
|
@@ -9906,7 +9919,7 @@
|
|
|
9906
9919
|
"description": "data-testid attribute of the element to find. Supports exact match or regex pattern using /pattern/ syntax."
|
|
9907
9920
|
},
|
|
9908
9921
|
"elementClass": {
|
|
9909
|
-
"
|
|
9922
|
+
"anyOf": [
|
|
9910
9923
|
{
|
|
9911
9924
|
"type": "string"
|
|
9912
9925
|
},
|
|
@@ -9923,7 +9936,7 @@
|
|
|
9923
9936
|
"type": "object",
|
|
9924
9937
|
"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.",
|
|
9925
9938
|
"additionalProperties": {
|
|
9926
|
-
"
|
|
9939
|
+
"anyOf": [
|
|
9927
9940
|
{
|
|
9928
9941
|
"type": "string"
|
|
9929
9942
|
},
|
|
@@ -9959,7 +9972,7 @@
|
|
|
9959
9972
|
{
|
|
9960
9973
|
"type": "array",
|
|
9961
9974
|
"items": {
|
|
9962
|
-
"
|
|
9975
|
+
"anyOf": [
|
|
9963
9976
|
{
|
|
9964
9977
|
"type": "string"
|
|
9965
9978
|
}
|
|
@@ -9982,7 +9995,7 @@
|
|
|
9982
9995
|
{
|
|
9983
9996
|
"type": "array",
|
|
9984
9997
|
"items": {
|
|
9985
|
-
"
|
|
9998
|
+
"anyOf": [
|
|
9986
9999
|
{
|
|
9987
10000
|
"type": "string"
|
|
9988
10001
|
}
|
|
@@ -10013,7 +10026,7 @@
|
|
|
10013
10026
|
"description": "data-testid attribute of the element to find. Supports exact match or regex pattern using /pattern/ syntax."
|
|
10014
10027
|
},
|
|
10015
10028
|
"elementClass": {
|
|
10016
|
-
"
|
|
10029
|
+
"anyOf": [
|
|
10017
10030
|
{
|
|
10018
10031
|
"type": "string"
|
|
10019
10032
|
},
|
|
@@ -10030,7 +10043,7 @@
|
|
|
10030
10043
|
"type": "object",
|
|
10031
10044
|
"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.",
|
|
10032
10045
|
"additionalProperties": {
|
|
10033
|
-
"
|
|
10046
|
+
"anyOf": [
|
|
10034
10047
|
{
|
|
10035
10048
|
"type": "string"
|
|
10036
10049
|
},
|
|
@@ -10133,6 +10146,19 @@
|
|
|
10133
10146
|
],
|
|
10134
10147
|
"inputDelay": 100
|
|
10135
10148
|
}
|
|
10149
|
+
},
|
|
10150
|
+
{
|
|
10151
|
+
"elementId": "/^user-[0-9]+$/",
|
|
10152
|
+
"elementClass": [
|
|
10153
|
+
"admin",
|
|
10154
|
+
"/^level-[1-5]$/"
|
|
10155
|
+
],
|
|
10156
|
+
"elementAttribute": {
|
|
10157
|
+
"data-active": true,
|
|
10158
|
+
"data-score": "/^[0-9]+$/"
|
|
10159
|
+
},
|
|
10160
|
+
"timeout": 8000,
|
|
10161
|
+
"moveTo": false
|
|
10136
10162
|
}
|
|
10137
10163
|
]
|
|
10138
10164
|
}
|
|
@@ -10602,7 +10628,7 @@
|
|
|
10602
10628
|
"description": "Accepted status codes. If the specified URL returns a code other than what is specified here, the action fails.",
|
|
10603
10629
|
"type": "array",
|
|
10604
10630
|
"items": {
|
|
10605
|
-
"
|
|
10631
|
+
"anyOf": [
|
|
10606
10632
|
{
|
|
10607
10633
|
"type": "integer"
|
|
10608
10634
|
}
|
|
@@ -11001,7 +11027,7 @@
|
|
|
11001
11027
|
"description": "Accepted status codes. If the specified URL returns a code other than what is specified here, the action fails.",
|
|
11002
11028
|
"type": "array",
|
|
11003
11029
|
"items": {
|
|
11004
|
-
"
|
|
11030
|
+
"anyOf": [
|
|
11005
11031
|
{
|
|
11006
11032
|
"type": "integer"
|
|
11007
11033
|
}
|
|
@@ -11462,7 +11488,7 @@
|
|
|
11462
11488
|
"type": "array",
|
|
11463
11489
|
"description": "Arguments for the command.",
|
|
11464
11490
|
"items": {
|
|
11465
|
-
"
|
|
11491
|
+
"anyOf": [
|
|
11466
11492
|
{
|
|
11467
11493
|
"type": "string"
|
|
11468
11494
|
}
|
|
@@ -11479,7 +11505,7 @@
|
|
|
11479
11505
|
"type": "array",
|
|
11480
11506
|
"description": "Expected exit codes of the command. If the command's actual exit code isn't in this list, the step fails.",
|
|
11481
11507
|
"items": {
|
|
11482
|
-
"
|
|
11508
|
+
"anyOf": [
|
|
11483
11509
|
{
|
|
11484
11510
|
"type": "integer"
|
|
11485
11511
|
}
|
|
@@ -11552,7 +11578,7 @@
|
|
|
11552
11578
|
"type": "array",
|
|
11553
11579
|
"description": "Arguments for the command.",
|
|
11554
11580
|
"items": {
|
|
11555
|
-
"
|
|
11581
|
+
"anyOf": [
|
|
11556
11582
|
{
|
|
11557
11583
|
"type": "string"
|
|
11558
11584
|
}
|
|
@@ -11569,7 +11595,7 @@
|
|
|
11569
11595
|
"type": "array",
|
|
11570
11596
|
"description": "Expected exit codes of the command. If the command's actual exit code isn't in this list, the step fails.",
|
|
11571
11597
|
"items": {
|
|
11572
|
-
"
|
|
11598
|
+
"anyOf": [
|
|
11573
11599
|
{
|
|
11574
11600
|
"type": "integer"
|
|
11575
11601
|
}
|
|
@@ -11770,7 +11796,7 @@
|
|
|
11770
11796
|
"type": "array",
|
|
11771
11797
|
"description": "Arguments for the command.",
|
|
11772
11798
|
"items": {
|
|
11773
|
-
"
|
|
11799
|
+
"anyOf": [
|
|
11774
11800
|
{
|
|
11775
11801
|
"type": "string"
|
|
11776
11802
|
}
|
|
@@ -11787,7 +11813,7 @@
|
|
|
11787
11813
|
"type": "array",
|
|
11788
11814
|
"description": "Expected exit codes of the command. If the command's actual exit code isn't in this list, the step fails.",
|
|
11789
11815
|
"items": {
|
|
11790
|
-
"
|
|
11816
|
+
"anyOf": [
|
|
11791
11817
|
{
|
|
11792
11818
|
"type": "integer"
|
|
11793
11819
|
}
|
|
@@ -11861,7 +11887,7 @@
|
|
|
11861
11887
|
"type": "array",
|
|
11862
11888
|
"description": "Arguments for the command.",
|
|
11863
11889
|
"items": {
|
|
11864
|
-
"
|
|
11890
|
+
"anyOf": [
|
|
11865
11891
|
{
|
|
11866
11892
|
"type": "string"
|
|
11867
11893
|
}
|
|
@@ -11878,7 +11904,7 @@
|
|
|
11878
11904
|
"type": "array",
|
|
11879
11905
|
"description": "Expected exit codes of the command. If the command's actual exit code isn't in this list, the step fails.",
|
|
11880
11906
|
"items": {
|
|
11881
|
-
"
|
|
11907
|
+
"anyOf": [
|
|
11882
11908
|
{
|
|
11883
11909
|
"type": "integer"
|
|
11884
11910
|
}
|
|
@@ -12049,7 +12075,7 @@
|
|
|
12049
12075
|
{
|
|
12050
12076
|
"type": "array",
|
|
12051
12077
|
"items": {
|
|
12052
|
-
"
|
|
12078
|
+
"anyOf": [
|
|
12053
12079
|
{
|
|
12054
12080
|
"type": "string"
|
|
12055
12081
|
}
|
|
@@ -12072,7 +12098,7 @@
|
|
|
12072
12098
|
{
|
|
12073
12099
|
"type": "array",
|
|
12074
12100
|
"items": {
|
|
12075
|
-
"
|
|
12101
|
+
"anyOf": [
|
|
12076
12102
|
{
|
|
12077
12103
|
"type": "string"
|
|
12078
12104
|
}
|
|
@@ -12103,7 +12129,7 @@
|
|
|
12103
12129
|
"description": "data-testid attribute of the element to find. Supports exact match or regex pattern using /pattern/ syntax."
|
|
12104
12130
|
},
|
|
12105
12131
|
"elementClass": {
|
|
12106
|
-
"
|
|
12132
|
+
"anyOf": [
|
|
12107
12133
|
{
|
|
12108
12134
|
"type": "string"
|
|
12109
12135
|
},
|
|
@@ -12120,7 +12146,7 @@
|
|
|
12120
12146
|
"type": "object",
|
|
12121
12147
|
"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.",
|
|
12122
12148
|
"additionalProperties": {
|
|
12123
|
-
"
|
|
12149
|
+
"anyOf": [
|
|
12124
12150
|
{
|
|
12125
12151
|
"type": "string"
|
|
12126
12152
|
},
|
|
@@ -12156,7 +12182,7 @@
|
|
|
12156
12182
|
{
|
|
12157
12183
|
"type": "array",
|
|
12158
12184
|
"items": {
|
|
12159
|
-
"
|
|
12185
|
+
"anyOf": [
|
|
12160
12186
|
{
|
|
12161
12187
|
"type": "string"
|
|
12162
12188
|
}
|
|
@@ -12179,7 +12205,7 @@
|
|
|
12179
12205
|
{
|
|
12180
12206
|
"type": "array",
|
|
12181
12207
|
"items": {
|
|
12182
|
-
"
|
|
12208
|
+
"anyOf": [
|
|
12183
12209
|
{
|
|
12184
12210
|
"type": "string"
|
|
12185
12211
|
}
|
|
@@ -12210,7 +12236,7 @@
|
|
|
12210
12236
|
"description": "data-testid attribute of the element to find. Supports exact match or regex pattern using /pattern/ syntax."
|
|
12211
12237
|
},
|
|
12212
12238
|
"elementClass": {
|
|
12213
|
-
"
|
|
12239
|
+
"anyOf": [
|
|
12214
12240
|
{
|
|
12215
12241
|
"type": "string"
|
|
12216
12242
|
},
|
|
@@ -12227,7 +12253,7 @@
|
|
|
12227
12253
|
"type": "object",
|
|
12228
12254
|
"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.",
|
|
12229
12255
|
"additionalProperties": {
|
|
12230
|
-
"
|
|
12256
|
+
"anyOf": [
|
|
12231
12257
|
{
|
|
12232
12258
|
"type": "string"
|
|
12233
12259
|
},
|
|
@@ -12467,7 +12493,7 @@
|
|
|
12467
12493
|
"description": "data-testid attribute of the element to find. Supports exact match or regex pattern using /pattern/ syntax."
|
|
12468
12494
|
},
|
|
12469
12495
|
"elementClass": {
|
|
12470
|
-
"
|
|
12496
|
+
"anyOf": [
|
|
12471
12497
|
{
|
|
12472
12498
|
"type": "string"
|
|
12473
12499
|
},
|
|
@@ -12484,7 +12510,7 @@
|
|
|
12484
12510
|
"type": "object",
|
|
12485
12511
|
"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.",
|
|
12486
12512
|
"additionalProperties": {
|
|
12487
|
-
"
|
|
12513
|
+
"anyOf": [
|
|
12488
12514
|
{
|
|
12489
12515
|
"type": "string"
|
|
12490
12516
|
},
|
|
@@ -12663,7 +12689,7 @@
|
|
|
12663
12689
|
"description": "data-testid attribute of the element to find. Supports exact match or regex pattern using /pattern/ syntax."
|
|
12664
12690
|
},
|
|
12665
12691
|
"elementClass": {
|
|
12666
|
-
"
|
|
12692
|
+
"anyOf": [
|
|
12667
12693
|
{
|
|
12668
12694
|
"type": "string"
|
|
12669
12695
|
},
|
|
@@ -12680,7 +12706,7 @@
|
|
|
12680
12706
|
"type": "object",
|
|
12681
12707
|
"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.",
|
|
12682
12708
|
"additionalProperties": {
|
|
12683
|
-
"
|
|
12709
|
+
"anyOf": [
|
|
12684
12710
|
{
|
|
12685
12711
|
"type": "string"
|
|
12686
12712
|
},
|
|
@@ -12798,7 +12824,7 @@
|
|
|
12798
12824
|
"description": "data-testid attribute of the element to find. Supports exact match or regex pattern using /pattern/ syntax."
|
|
12799
12825
|
},
|
|
12800
12826
|
"elementClass": {
|
|
12801
|
-
"
|
|
12827
|
+
"anyOf": [
|
|
12802
12828
|
{
|
|
12803
12829
|
"type": "string"
|
|
12804
12830
|
},
|
|
@@ -12815,7 +12841,7 @@
|
|
|
12815
12841
|
"type": "object",
|
|
12816
12842
|
"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.",
|
|
12817
12843
|
"additionalProperties": {
|
|
12818
|
-
"
|
|
12844
|
+
"anyOf": [
|
|
12819
12845
|
{
|
|
12820
12846
|
"type": "string"
|
|
12821
12847
|
},
|