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.
- 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 +481 -123
- package/dist/schemas/find_v3.schema.json +41 -28
- package/dist/schemas/goTo_v3.schema.json +167 -1
- package/dist/schemas/httpRequest_v3.schema.json +2 -2
- package/dist/schemas/report_v3.schema.json +478 -120
- package/dist/schemas/resolvedTests_v3.schema.json +1003 -287
- 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 +478 -120
- package/dist/schemas/step_v3.schema.json +238 -59
- package/dist/schemas/test_v3.schema.json +477 -119
- package/dist/schemas/type_v3.schema.json +8 -8
- package/package.json +2 -2
- 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 +481 -123
- package/src/schemas/output_schemas/find_v3.schema.json +41 -28
- package/src/schemas/output_schemas/goTo_v3.schema.json +167 -1
- package/src/schemas/output_schemas/httpRequest_v3.schema.json +2 -2
- package/src/schemas/output_schemas/report_v3.schema.json +478 -120
- package/src/schemas/output_schemas/resolvedTests_v3.schema.json +1003 -287
- 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 +478 -120
- package/src/schemas/output_schemas/step_v3.schema.json +238 -59
- package/src/schemas/output_schemas/test_v3.schema.json +477 -119
- package/src/schemas/output_schemas/type_v3.schema.json +8 -8
- package/src/schemas/schemas.json +3588 -1082
- 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/goTo_v3.schema.json +109 -14
- 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
- package/src/schemas/build/goTo_v3.schema.json +0 -63
|
@@ -33,7 +33,7 @@
|
|
|
33
33
|
"type": "array",
|
|
34
34
|
"description": "Contexts to run the test in. Overrides contexts defined at the config and spec levels.",
|
|
35
35
|
"items": {
|
|
36
|
-
"
|
|
36
|
+
"anyOf": [
|
|
37
37
|
{
|
|
38
38
|
"$schema": "http://json-schema.org/draft-07/schema#",
|
|
39
39
|
"title": "context",
|
|
@@ -626,7 +626,7 @@
|
|
|
626
626
|
"type": "array",
|
|
627
627
|
"description": "Contexts to run the test in. Overrides contexts defined at the config and spec levels.",
|
|
628
628
|
"items": {
|
|
629
|
-
"
|
|
629
|
+
"anyOf": [
|
|
630
630
|
{
|
|
631
631
|
"$schema": "http://json-schema.org/draft-07/schema#",
|
|
632
632
|
"title": "context",
|
|
@@ -1427,7 +1427,7 @@
|
|
|
1427
1427
|
{
|
|
1428
1428
|
"type": "array",
|
|
1429
1429
|
"items": {
|
|
1430
|
-
"
|
|
1430
|
+
"anyOf": [
|
|
1431
1431
|
{
|
|
1432
1432
|
"type": "integer"
|
|
1433
1433
|
}
|
|
@@ -1490,7 +1490,7 @@
|
|
|
1490
1490
|
{
|
|
1491
1491
|
"type": "array",
|
|
1492
1492
|
"items": {
|
|
1493
|
-
"
|
|
1493
|
+
"anyOf": [
|
|
1494
1494
|
{
|
|
1495
1495
|
"type": "integer"
|
|
1496
1496
|
}
|
|
@@ -1674,7 +1674,7 @@
|
|
|
1674
1674
|
"description": "data-testid attribute of the element to click. Supports exact match or regex pattern using /pattern/ syntax."
|
|
1675
1675
|
},
|
|
1676
1676
|
"elementClass": {
|
|
1677
|
-
"
|
|
1677
|
+
"anyOf": [
|
|
1678
1678
|
{
|
|
1679
1679
|
"type": "string"
|
|
1680
1680
|
},
|
|
@@ -1691,7 +1691,7 @@
|
|
|
1691
1691
|
"type": "object",
|
|
1692
1692
|
"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.",
|
|
1693
1693
|
"additionalProperties": {
|
|
1694
|
-
"
|
|
1694
|
+
"anyOf": [
|
|
1695
1695
|
{
|
|
1696
1696
|
"type": "string"
|
|
1697
1697
|
},
|
|
@@ -1797,7 +1797,7 @@
|
|
|
1797
1797
|
"description": "data-testid attribute of the element to click. Supports exact match or regex pattern using /pattern/ syntax."
|
|
1798
1798
|
},
|
|
1799
1799
|
"elementClass": {
|
|
1800
|
-
"
|
|
1800
|
+
"anyOf": [
|
|
1801
1801
|
{
|
|
1802
1802
|
"type": "string"
|
|
1803
1803
|
},
|
|
@@ -1814,7 +1814,7 @@
|
|
|
1814
1814
|
"type": "object",
|
|
1815
1815
|
"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.",
|
|
1816
1816
|
"additionalProperties": {
|
|
1817
|
-
"
|
|
1817
|
+
"anyOf": [
|
|
1818
1818
|
{
|
|
1819
1819
|
"type": "string"
|
|
1820
1820
|
},
|
|
@@ -1989,7 +1989,7 @@
|
|
|
1989
1989
|
"description": "data-testid attribute of the element to find. Supports exact match or regex pattern using /pattern/ syntax."
|
|
1990
1990
|
},
|
|
1991
1991
|
"elementClass": {
|
|
1992
|
-
"
|
|
1992
|
+
"anyOf": [
|
|
1993
1993
|
{
|
|
1994
1994
|
"type": "string"
|
|
1995
1995
|
},
|
|
@@ -2006,7 +2006,7 @@
|
|
|
2006
2006
|
"type": "object",
|
|
2007
2007
|
"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.",
|
|
2008
2008
|
"additionalProperties": {
|
|
2009
|
-
"
|
|
2009
|
+
"anyOf": [
|
|
2010
2010
|
{
|
|
2011
2011
|
"type": "string"
|
|
2012
2012
|
},
|
|
@@ -2113,7 +2113,7 @@
|
|
|
2113
2113
|
"description": "data-testid attribute of the element to click. Supports exact match or regex pattern using /pattern/ syntax."
|
|
2114
2114
|
},
|
|
2115
2115
|
"elementClass": {
|
|
2116
|
-
"
|
|
2116
|
+
"anyOf": [
|
|
2117
2117
|
{
|
|
2118
2118
|
"type": "string"
|
|
2119
2119
|
},
|
|
@@ -2130,7 +2130,7 @@
|
|
|
2130
2130
|
"type": "object",
|
|
2131
2131
|
"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.",
|
|
2132
2132
|
"additionalProperties": {
|
|
2133
|
-
"
|
|
2133
|
+
"anyOf": [
|
|
2134
2134
|
{
|
|
2135
2135
|
"type": "string"
|
|
2136
2136
|
},
|
|
@@ -2236,7 +2236,7 @@
|
|
|
2236
2236
|
"description": "data-testid attribute of the element to click. Supports exact match or regex pattern using /pattern/ syntax."
|
|
2237
2237
|
},
|
|
2238
2238
|
"elementClass": {
|
|
2239
|
-
"
|
|
2239
|
+
"anyOf": [
|
|
2240
2240
|
{
|
|
2241
2241
|
"type": "string"
|
|
2242
2242
|
},
|
|
@@ -2253,7 +2253,7 @@
|
|
|
2253
2253
|
"type": "object",
|
|
2254
2254
|
"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.",
|
|
2255
2255
|
"additionalProperties": {
|
|
2256
|
-
"
|
|
2256
|
+
"anyOf": [
|
|
2257
2257
|
{
|
|
2258
2258
|
"type": "string"
|
|
2259
2259
|
},
|
|
@@ -2323,7 +2323,7 @@
|
|
|
2323
2323
|
{
|
|
2324
2324
|
"type": "array",
|
|
2325
2325
|
"items": {
|
|
2326
|
-
"
|
|
2326
|
+
"anyOf": [
|
|
2327
2327
|
{
|
|
2328
2328
|
"type": "string"
|
|
2329
2329
|
}
|
|
@@ -2346,7 +2346,7 @@
|
|
|
2346
2346
|
{
|
|
2347
2347
|
"type": "array",
|
|
2348
2348
|
"items": {
|
|
2349
|
-
"
|
|
2349
|
+
"anyOf": [
|
|
2350
2350
|
{
|
|
2351
2351
|
"type": "string"
|
|
2352
2352
|
}
|
|
@@ -2377,7 +2377,7 @@
|
|
|
2377
2377
|
"description": "data-testid attribute of the element to find. Supports exact match or regex pattern using /pattern/ syntax."
|
|
2378
2378
|
},
|
|
2379
2379
|
"elementClass": {
|
|
2380
|
-
"
|
|
2380
|
+
"anyOf": [
|
|
2381
2381
|
{
|
|
2382
2382
|
"type": "string"
|
|
2383
2383
|
},
|
|
@@ -2394,7 +2394,7 @@
|
|
|
2394
2394
|
"type": "object",
|
|
2395
2395
|
"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.",
|
|
2396
2396
|
"additionalProperties": {
|
|
2397
|
-
"
|
|
2397
|
+
"anyOf": [
|
|
2398
2398
|
{
|
|
2399
2399
|
"type": "string"
|
|
2400
2400
|
},
|
|
@@ -2430,7 +2430,7 @@
|
|
|
2430
2430
|
{
|
|
2431
2431
|
"type": "array",
|
|
2432
2432
|
"items": {
|
|
2433
|
-
"
|
|
2433
|
+
"anyOf": [
|
|
2434
2434
|
{
|
|
2435
2435
|
"type": "string"
|
|
2436
2436
|
}
|
|
@@ -2453,7 +2453,7 @@
|
|
|
2453
2453
|
{
|
|
2454
2454
|
"type": "array",
|
|
2455
2455
|
"items": {
|
|
2456
|
-
"
|
|
2456
|
+
"anyOf": [
|
|
2457
2457
|
{
|
|
2458
2458
|
"type": "string"
|
|
2459
2459
|
}
|
|
@@ -2484,7 +2484,7 @@
|
|
|
2484
2484
|
"description": "data-testid attribute of the element to find. Supports exact match or regex pattern using /pattern/ syntax."
|
|
2485
2485
|
},
|
|
2486
2486
|
"elementClass": {
|
|
2487
|
-
"
|
|
2487
|
+
"anyOf": [
|
|
2488
2488
|
{
|
|
2489
2489
|
"type": "string"
|
|
2490
2490
|
},
|
|
@@ -2501,7 +2501,7 @@
|
|
|
2501
2501
|
"type": "object",
|
|
2502
2502
|
"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.",
|
|
2503
2503
|
"additionalProperties": {
|
|
2504
|
-
"
|
|
2504
|
+
"anyOf": [
|
|
2505
2505
|
{
|
|
2506
2506
|
"type": "string"
|
|
2507
2507
|
},
|
|
@@ -2638,7 +2638,7 @@
|
|
|
2638
2638
|
"description": "data-testid attribute of the element to find. Supports exact match or regex pattern using /pattern/ syntax."
|
|
2639
2639
|
},
|
|
2640
2640
|
"elementClass": {
|
|
2641
|
-
"
|
|
2641
|
+
"anyOf": [
|
|
2642
2642
|
{
|
|
2643
2643
|
"type": "string"
|
|
2644
2644
|
},
|
|
@@ -2655,7 +2655,7 @@
|
|
|
2655
2655
|
"type": "object",
|
|
2656
2656
|
"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.",
|
|
2657
2657
|
"additionalProperties": {
|
|
2658
|
-
"
|
|
2658
|
+
"anyOf": [
|
|
2659
2659
|
{
|
|
2660
2660
|
"type": "string"
|
|
2661
2661
|
},
|
|
@@ -2762,7 +2762,7 @@
|
|
|
2762
2762
|
"description": "data-testid attribute of the element to click. Supports exact match or regex pattern using /pattern/ syntax."
|
|
2763
2763
|
},
|
|
2764
2764
|
"elementClass": {
|
|
2765
|
-
"
|
|
2765
|
+
"anyOf": [
|
|
2766
2766
|
{
|
|
2767
2767
|
"type": "string"
|
|
2768
2768
|
},
|
|
@@ -2779,7 +2779,7 @@
|
|
|
2779
2779
|
"type": "object",
|
|
2780
2780
|
"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.",
|
|
2781
2781
|
"additionalProperties": {
|
|
2782
|
-
"
|
|
2782
|
+
"anyOf": [
|
|
2783
2783
|
{
|
|
2784
2784
|
"type": "string"
|
|
2785
2785
|
},
|
|
@@ -2885,7 +2885,7 @@
|
|
|
2885
2885
|
"description": "data-testid attribute of the element to click. Supports exact match or regex pattern using /pattern/ syntax."
|
|
2886
2886
|
},
|
|
2887
2887
|
"elementClass": {
|
|
2888
|
-
"
|
|
2888
|
+
"anyOf": [
|
|
2889
2889
|
{
|
|
2890
2890
|
"type": "string"
|
|
2891
2891
|
},
|
|
@@ -2902,7 +2902,7 @@
|
|
|
2902
2902
|
"type": "object",
|
|
2903
2903
|
"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.",
|
|
2904
2904
|
"additionalProperties": {
|
|
2905
|
-
"
|
|
2905
|
+
"anyOf": [
|
|
2906
2906
|
{
|
|
2907
2907
|
"type": "string"
|
|
2908
2908
|
},
|
|
@@ -2972,7 +2972,7 @@
|
|
|
2972
2972
|
{
|
|
2973
2973
|
"type": "array",
|
|
2974
2974
|
"items": {
|
|
2975
|
-
"
|
|
2975
|
+
"anyOf": [
|
|
2976
2976
|
{
|
|
2977
2977
|
"type": "string"
|
|
2978
2978
|
}
|
|
@@ -2995,7 +2995,7 @@
|
|
|
2995
2995
|
{
|
|
2996
2996
|
"type": "array",
|
|
2997
2997
|
"items": {
|
|
2998
|
-
"
|
|
2998
|
+
"anyOf": [
|
|
2999
2999
|
{
|
|
3000
3000
|
"type": "string"
|
|
3001
3001
|
}
|
|
@@ -3026,7 +3026,7 @@
|
|
|
3026
3026
|
"description": "data-testid attribute of the element to find. Supports exact match or regex pattern using /pattern/ syntax."
|
|
3027
3027
|
},
|
|
3028
3028
|
"elementClass": {
|
|
3029
|
-
"
|
|
3029
|
+
"anyOf": [
|
|
3030
3030
|
{
|
|
3031
3031
|
"type": "string"
|
|
3032
3032
|
},
|
|
@@ -3043,7 +3043,7 @@
|
|
|
3043
3043
|
"type": "object",
|
|
3044
3044
|
"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.",
|
|
3045
3045
|
"additionalProperties": {
|
|
3046
|
-
"
|
|
3046
|
+
"anyOf": [
|
|
3047
3047
|
{
|
|
3048
3048
|
"type": "string"
|
|
3049
3049
|
},
|
|
@@ -3079,7 +3079,7 @@
|
|
|
3079
3079
|
{
|
|
3080
3080
|
"type": "array",
|
|
3081
3081
|
"items": {
|
|
3082
|
-
"
|
|
3082
|
+
"anyOf": [
|
|
3083
3083
|
{
|
|
3084
3084
|
"type": "string"
|
|
3085
3085
|
}
|
|
@@ -3102,7 +3102,7 @@
|
|
|
3102
3102
|
{
|
|
3103
3103
|
"type": "array",
|
|
3104
3104
|
"items": {
|
|
3105
|
-
"
|
|
3105
|
+
"anyOf": [
|
|
3106
3106
|
{
|
|
3107
3107
|
"type": "string"
|
|
3108
3108
|
}
|
|
@@ -3133,7 +3133,7 @@
|
|
|
3133
3133
|
"description": "data-testid attribute of the element to find. Supports exact match or regex pattern using /pattern/ syntax."
|
|
3134
3134
|
},
|
|
3135
3135
|
"elementClass": {
|
|
3136
|
-
"
|
|
3136
|
+
"anyOf": [
|
|
3137
3137
|
{
|
|
3138
3138
|
"type": "string"
|
|
3139
3139
|
},
|
|
@@ -3150,7 +3150,7 @@
|
|
|
3150
3150
|
"type": "object",
|
|
3151
3151
|
"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.",
|
|
3152
3152
|
"additionalProperties": {
|
|
3153
|
-
"
|
|
3153
|
+
"anyOf": [
|
|
3154
3154
|
{
|
|
3155
3155
|
"type": "string"
|
|
3156
3156
|
},
|
|
@@ -3253,6 +3253,19 @@
|
|
|
3253
3253
|
],
|
|
3254
3254
|
"inputDelay": 100
|
|
3255
3255
|
}
|
|
3256
|
+
},
|
|
3257
|
+
{
|
|
3258
|
+
"elementId": "/^user-[0-9]+$/",
|
|
3259
|
+
"elementClass": [
|
|
3260
|
+
"admin",
|
|
3261
|
+
"/^level-[1-5]$/"
|
|
3262
|
+
],
|
|
3263
|
+
"elementAttribute": {
|
|
3264
|
+
"data-active": true,
|
|
3265
|
+
"data-score": "/^[0-9]+$/"
|
|
3266
|
+
},
|
|
3267
|
+
"timeout": 8000,
|
|
3268
|
+
"moveTo": false
|
|
3256
3269
|
}
|
|
3257
3270
|
]
|
|
3258
3271
|
}
|
|
@@ -3362,6 +3375,72 @@
|
|
|
3362
3375
|
"transform": [
|
|
3363
3376
|
"trim"
|
|
3364
3377
|
]
|
|
3378
|
+
},
|
|
3379
|
+
"timeout": {
|
|
3380
|
+
"type": "integer",
|
|
3381
|
+
"description": "Maximum time in milliseconds to wait for the page to be ready. If exceeded, the goTo action fails.",
|
|
3382
|
+
"default": 30000,
|
|
3383
|
+
"minimum": 0
|
|
3384
|
+
},
|
|
3385
|
+
"waitUntil": {
|
|
3386
|
+
"type": "object",
|
|
3387
|
+
"description": "Configuration for waiting conditions after navigation.",
|
|
3388
|
+
"additionalProperties": false,
|
|
3389
|
+
"properties": {
|
|
3390
|
+
"networkIdleTime": {
|
|
3391
|
+
"description": "Wait for network activity to be idle (no new requests) for this duration in milliseconds. Set to `null` to skip this check.",
|
|
3392
|
+
"anyOf": [
|
|
3393
|
+
{
|
|
3394
|
+
"type": "integer",
|
|
3395
|
+
"minimum": 0
|
|
3396
|
+
},
|
|
3397
|
+
{
|
|
3398
|
+
"type": "null"
|
|
3399
|
+
}
|
|
3400
|
+
],
|
|
3401
|
+
"default": 500
|
|
3402
|
+
},
|
|
3403
|
+
"domIdleTime": {
|
|
3404
|
+
"description": "Wait for DOM mutations to stop for this duration in milliseconds. Set to `null` to skip this check.",
|
|
3405
|
+
"anyOf": [
|
|
3406
|
+
{
|
|
3407
|
+
"type": "integer",
|
|
3408
|
+
"minimum": 0
|
|
3409
|
+
},
|
|
3410
|
+
{
|
|
3411
|
+
"type": "null"
|
|
3412
|
+
}
|
|
3413
|
+
],
|
|
3414
|
+
"default": 1000
|
|
3415
|
+
},
|
|
3416
|
+
"find": {
|
|
3417
|
+
"type": "object",
|
|
3418
|
+
"description": "Wait for a specific element to be present in the DOM. At least one of selector or elementText must be specified.",
|
|
3419
|
+
"additionalProperties": false,
|
|
3420
|
+
"anyOf": [
|
|
3421
|
+
{
|
|
3422
|
+
"required": [
|
|
3423
|
+
"selector"
|
|
3424
|
+
]
|
|
3425
|
+
},
|
|
3426
|
+
{
|
|
3427
|
+
"required": [
|
|
3428
|
+
"elementText"
|
|
3429
|
+
]
|
|
3430
|
+
}
|
|
3431
|
+
],
|
|
3432
|
+
"properties": {
|
|
3433
|
+
"selector": {
|
|
3434
|
+
"type": "string",
|
|
3435
|
+
"description": "CSS selector for the element to wait for."
|
|
3436
|
+
},
|
|
3437
|
+
"elementText": {
|
|
3438
|
+
"type": "string",
|
|
3439
|
+
"description": "Text content the element must contain."
|
|
3440
|
+
}
|
|
3441
|
+
}
|
|
3442
|
+
}
|
|
3443
|
+
}
|
|
3365
3444
|
}
|
|
3366
3445
|
},
|
|
3367
3446
|
"title": "Go to URL (detailed)"
|
|
@@ -3400,6 +3479,72 @@
|
|
|
3400
3479
|
"transform": [
|
|
3401
3480
|
"trim"
|
|
3402
3481
|
]
|
|
3482
|
+
},
|
|
3483
|
+
"timeout": {
|
|
3484
|
+
"type": "integer",
|
|
3485
|
+
"description": "Maximum time in milliseconds to wait for the page to be ready. If exceeded, the goTo action fails.",
|
|
3486
|
+
"default": 30000,
|
|
3487
|
+
"minimum": 0
|
|
3488
|
+
},
|
|
3489
|
+
"waitUntil": {
|
|
3490
|
+
"type": "object",
|
|
3491
|
+
"description": "Configuration for waiting conditions after navigation.",
|
|
3492
|
+
"additionalProperties": false,
|
|
3493
|
+
"properties": {
|
|
3494
|
+
"networkIdleTime": {
|
|
3495
|
+
"description": "Wait for network activity to be idle (no new requests) for this duration in milliseconds. Set to `null` to skip this check.",
|
|
3496
|
+
"anyOf": [
|
|
3497
|
+
{
|
|
3498
|
+
"type": "integer",
|
|
3499
|
+
"minimum": 0
|
|
3500
|
+
},
|
|
3501
|
+
{
|
|
3502
|
+
"type": "null"
|
|
3503
|
+
}
|
|
3504
|
+
],
|
|
3505
|
+
"default": 500
|
|
3506
|
+
},
|
|
3507
|
+
"domIdleTime": {
|
|
3508
|
+
"description": "Wait for DOM mutations to stop for this duration in milliseconds. Set to `null` to skip this check.",
|
|
3509
|
+
"anyOf": [
|
|
3510
|
+
{
|
|
3511
|
+
"type": "integer",
|
|
3512
|
+
"minimum": 0
|
|
3513
|
+
},
|
|
3514
|
+
{
|
|
3515
|
+
"type": "null"
|
|
3516
|
+
}
|
|
3517
|
+
],
|
|
3518
|
+
"default": 1000
|
|
3519
|
+
},
|
|
3520
|
+
"find": {
|
|
3521
|
+
"type": "object",
|
|
3522
|
+
"description": "Wait for a specific element to be present in the DOM. At least one of selector or elementText must be specified.",
|
|
3523
|
+
"additionalProperties": false,
|
|
3524
|
+
"anyOf": [
|
|
3525
|
+
{
|
|
3526
|
+
"required": [
|
|
3527
|
+
"selector"
|
|
3528
|
+
]
|
|
3529
|
+
},
|
|
3530
|
+
{
|
|
3531
|
+
"required": [
|
|
3532
|
+
"elementText"
|
|
3533
|
+
]
|
|
3534
|
+
}
|
|
3535
|
+
],
|
|
3536
|
+
"properties": {
|
|
3537
|
+
"selector": {
|
|
3538
|
+
"type": "string",
|
|
3539
|
+
"description": "CSS selector for the element to wait for."
|
|
3540
|
+
},
|
|
3541
|
+
"elementText": {
|
|
3542
|
+
"type": "string",
|
|
3543
|
+
"description": "Text content the element must contain."
|
|
3544
|
+
}
|
|
3545
|
+
}
|
|
3546
|
+
}
|
|
3547
|
+
}
|
|
3403
3548
|
}
|
|
3404
3549
|
},
|
|
3405
3550
|
"title": "Go to URL (detailed)"
|
|
@@ -3414,7 +3559,41 @@
|
|
|
3414
3559
|
},
|
|
3415
3560
|
{
|
|
3416
3561
|
"url": "/search",
|
|
3417
|
-
"origin": "www.google.com"
|
|
3562
|
+
"origin": "https://www.google.com"
|
|
3563
|
+
},
|
|
3564
|
+
{
|
|
3565
|
+
"url": "https://www.example.com",
|
|
3566
|
+
"waitUntil": {
|
|
3567
|
+
"networkIdleTime": 500
|
|
3568
|
+
}
|
|
3569
|
+
},
|
|
3570
|
+
{
|
|
3571
|
+
"url": "https://www.example.com/dashboard",
|
|
3572
|
+
"waitUntil": {
|
|
3573
|
+
"find": {
|
|
3574
|
+
"selector": "[data-testid='dashboard-loaded']"
|
|
3575
|
+
}
|
|
3576
|
+
}
|
|
3577
|
+
},
|
|
3578
|
+
{
|
|
3579
|
+
"url": "https://www.example.com/app",
|
|
3580
|
+
"timeout": 60000,
|
|
3581
|
+
"waitUntil": {
|
|
3582
|
+
"networkIdleTime": 500,
|
|
3583
|
+
"domIdleTime": 1000,
|
|
3584
|
+
"find": {
|
|
3585
|
+
"selector": ".main-content",
|
|
3586
|
+
"elementText": "Dashboard"
|
|
3587
|
+
}
|
|
3588
|
+
}
|
|
3589
|
+
},
|
|
3590
|
+
{
|
|
3591
|
+
"url": "https://www.example.com/status",
|
|
3592
|
+
"waitUntil": {
|
|
3593
|
+
"find": {
|
|
3594
|
+
"elementText": "System operational"
|
|
3595
|
+
}
|
|
3596
|
+
}
|
|
3418
3597
|
}
|
|
3419
3598
|
]
|
|
3420
3599
|
}
|
|
@@ -3722,7 +3901,7 @@
|
|
|
3722
3901
|
"description": "Accepted status codes. If the specified URL returns a code other than what is specified here, the action fails.",
|
|
3723
3902
|
"type": "array",
|
|
3724
3903
|
"items": {
|
|
3725
|
-
"
|
|
3904
|
+
"anyOf": [
|
|
3726
3905
|
{
|
|
3727
3906
|
"type": "integer"
|
|
3728
3907
|
}
|
|
@@ -4121,7 +4300,7 @@
|
|
|
4121
4300
|
"description": "Accepted status codes. If the specified URL returns a code other than what is specified here, the action fails.",
|
|
4122
4301
|
"type": "array",
|
|
4123
4302
|
"items": {
|
|
4124
|
-
"
|
|
4303
|
+
"anyOf": [
|
|
4125
4304
|
{
|
|
4126
4305
|
"type": "integer"
|
|
4127
4306
|
}
|
|
@@ -4582,7 +4761,7 @@
|
|
|
4582
4761
|
"type": "array",
|
|
4583
4762
|
"description": "Arguments for the command.",
|
|
4584
4763
|
"items": {
|
|
4585
|
-
"
|
|
4764
|
+
"anyOf": [
|
|
4586
4765
|
{
|
|
4587
4766
|
"type": "string"
|
|
4588
4767
|
}
|
|
@@ -4599,7 +4778,7 @@
|
|
|
4599
4778
|
"type": "array",
|
|
4600
4779
|
"description": "Expected exit codes of the command. If the command's actual exit code isn't in this list, the step fails.",
|
|
4601
4780
|
"items": {
|
|
4602
|
-
"
|
|
4781
|
+
"anyOf": [
|
|
4603
4782
|
{
|
|
4604
4783
|
"type": "integer"
|
|
4605
4784
|
}
|
|
@@ -4672,7 +4851,7 @@
|
|
|
4672
4851
|
"type": "array",
|
|
4673
4852
|
"description": "Arguments for the command.",
|
|
4674
4853
|
"items": {
|
|
4675
|
-
"
|
|
4854
|
+
"anyOf": [
|
|
4676
4855
|
{
|
|
4677
4856
|
"type": "string"
|
|
4678
4857
|
}
|
|
@@ -4689,7 +4868,7 @@
|
|
|
4689
4868
|
"type": "array",
|
|
4690
4869
|
"description": "Expected exit codes of the command. If the command's actual exit code isn't in this list, the step fails.",
|
|
4691
4870
|
"items": {
|
|
4692
|
-
"
|
|
4871
|
+
"anyOf": [
|
|
4693
4872
|
{
|
|
4694
4873
|
"type": "integer"
|
|
4695
4874
|
}
|
|
@@ -4890,7 +5069,7 @@
|
|
|
4890
5069
|
"type": "array",
|
|
4891
5070
|
"description": "Arguments for the command.",
|
|
4892
5071
|
"items": {
|
|
4893
|
-
"
|
|
5072
|
+
"anyOf": [
|
|
4894
5073
|
{
|
|
4895
5074
|
"type": "string"
|
|
4896
5075
|
}
|
|
@@ -4907,7 +5086,7 @@
|
|
|
4907
5086
|
"type": "array",
|
|
4908
5087
|
"description": "Expected exit codes of the command. If the command's actual exit code isn't in this list, the step fails.",
|
|
4909
5088
|
"items": {
|
|
4910
|
-
"
|
|
5089
|
+
"anyOf": [
|
|
4911
5090
|
{
|
|
4912
5091
|
"type": "integer"
|
|
4913
5092
|
}
|
|
@@ -4981,7 +5160,7 @@
|
|
|
4981
5160
|
"type": "array",
|
|
4982
5161
|
"description": "Arguments for the command.",
|
|
4983
5162
|
"items": {
|
|
4984
|
-
"
|
|
5163
|
+
"anyOf": [
|
|
4985
5164
|
{
|
|
4986
5165
|
"type": "string"
|
|
4987
5166
|
}
|
|
@@ -4998,7 +5177,7 @@
|
|
|
4998
5177
|
"type": "array",
|
|
4999
5178
|
"description": "Expected exit codes of the command. If the command's actual exit code isn't in this list, the step fails.",
|
|
5000
5179
|
"items": {
|
|
5001
|
-
"
|
|
5180
|
+
"anyOf": [
|
|
5002
5181
|
{
|
|
5003
5182
|
"type": "integer"
|
|
5004
5183
|
}
|
|
@@ -5169,7 +5348,7 @@
|
|
|
5169
5348
|
{
|
|
5170
5349
|
"type": "array",
|
|
5171
5350
|
"items": {
|
|
5172
|
-
"
|
|
5351
|
+
"anyOf": [
|
|
5173
5352
|
{
|
|
5174
5353
|
"type": "string"
|
|
5175
5354
|
}
|
|
@@ -5192,7 +5371,7 @@
|
|
|
5192
5371
|
{
|
|
5193
5372
|
"type": "array",
|
|
5194
5373
|
"items": {
|
|
5195
|
-
"
|
|
5374
|
+
"anyOf": [
|
|
5196
5375
|
{
|
|
5197
5376
|
"type": "string"
|
|
5198
5377
|
}
|
|
@@ -5223,7 +5402,7 @@
|
|
|
5223
5402
|
"description": "data-testid attribute of the element to find. Supports exact match or regex pattern using /pattern/ syntax."
|
|
5224
5403
|
},
|
|
5225
5404
|
"elementClass": {
|
|
5226
|
-
"
|
|
5405
|
+
"anyOf": [
|
|
5227
5406
|
{
|
|
5228
5407
|
"type": "string"
|
|
5229
5408
|
},
|
|
@@ -5240,7 +5419,7 @@
|
|
|
5240
5419
|
"type": "object",
|
|
5241
5420
|
"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.",
|
|
5242
5421
|
"additionalProperties": {
|
|
5243
|
-
"
|
|
5422
|
+
"anyOf": [
|
|
5244
5423
|
{
|
|
5245
5424
|
"type": "string"
|
|
5246
5425
|
},
|
|
@@ -5276,7 +5455,7 @@
|
|
|
5276
5455
|
{
|
|
5277
5456
|
"type": "array",
|
|
5278
5457
|
"items": {
|
|
5279
|
-
"
|
|
5458
|
+
"anyOf": [
|
|
5280
5459
|
{
|
|
5281
5460
|
"type": "string"
|
|
5282
5461
|
}
|
|
@@ -5299,7 +5478,7 @@
|
|
|
5299
5478
|
{
|
|
5300
5479
|
"type": "array",
|
|
5301
5480
|
"items": {
|
|
5302
|
-
"
|
|
5481
|
+
"anyOf": [
|
|
5303
5482
|
{
|
|
5304
5483
|
"type": "string"
|
|
5305
5484
|
}
|
|
@@ -5330,7 +5509,7 @@
|
|
|
5330
5509
|
"description": "data-testid attribute of the element to find. Supports exact match or regex pattern using /pattern/ syntax."
|
|
5331
5510
|
},
|
|
5332
5511
|
"elementClass": {
|
|
5333
|
-
"
|
|
5512
|
+
"anyOf": [
|
|
5334
5513
|
{
|
|
5335
5514
|
"type": "string"
|
|
5336
5515
|
},
|
|
@@ -5347,7 +5526,7 @@
|
|
|
5347
5526
|
"type": "object",
|
|
5348
5527
|
"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.",
|
|
5349
5528
|
"additionalProperties": {
|
|
5350
|
-
"
|
|
5529
|
+
"anyOf": [
|
|
5351
5530
|
{
|
|
5352
5531
|
"type": "string"
|
|
5353
5532
|
},
|
|
@@ -5587,7 +5766,7 @@
|
|
|
5587
5766
|
"description": "data-testid attribute of the element to find. Supports exact match or regex pattern using /pattern/ syntax."
|
|
5588
5767
|
},
|
|
5589
5768
|
"elementClass": {
|
|
5590
|
-
"
|
|
5769
|
+
"anyOf": [
|
|
5591
5770
|
{
|
|
5592
5771
|
"type": "string"
|
|
5593
5772
|
},
|
|
@@ -5604,7 +5783,7 @@
|
|
|
5604
5783
|
"type": "object",
|
|
5605
5784
|
"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.",
|
|
5606
5785
|
"additionalProperties": {
|
|
5607
|
-
"
|
|
5786
|
+
"anyOf": [
|
|
5608
5787
|
{
|
|
5609
5788
|
"type": "string"
|
|
5610
5789
|
},
|
|
@@ -5783,7 +5962,7 @@
|
|
|
5783
5962
|
"description": "data-testid attribute of the element to find. Supports exact match or regex pattern using /pattern/ syntax."
|
|
5784
5963
|
},
|
|
5785
5964
|
"elementClass": {
|
|
5786
|
-
"
|
|
5965
|
+
"anyOf": [
|
|
5787
5966
|
{
|
|
5788
5967
|
"type": "string"
|
|
5789
5968
|
},
|
|
@@ -5800,7 +5979,7 @@
|
|
|
5800
5979
|
"type": "object",
|
|
5801
5980
|
"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.",
|
|
5802
5981
|
"additionalProperties": {
|
|
5803
|
-
"
|
|
5982
|
+
"anyOf": [
|
|
5804
5983
|
{
|
|
5805
5984
|
"type": "string"
|
|
5806
5985
|
},
|
|
@@ -5918,7 +6097,7 @@
|
|
|
5918
6097
|
"description": "data-testid attribute of the element to find. Supports exact match or regex pattern using /pattern/ syntax."
|
|
5919
6098
|
},
|
|
5920
6099
|
"elementClass": {
|
|
5921
|
-
"
|
|
6100
|
+
"anyOf": [
|
|
5922
6101
|
{
|
|
5923
6102
|
"type": "string"
|
|
5924
6103
|
},
|
|
@@ -5935,7 +6114,7 @@
|
|
|
5935
6114
|
"type": "object",
|
|
5936
6115
|
"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.",
|
|
5937
6116
|
"additionalProperties": {
|
|
5938
|
-
"
|
|
6117
|
+
"anyOf": [
|
|
5939
6118
|
{
|
|
5940
6119
|
"type": "string"
|
|
5941
6120
|
},
|
|
@@ -8291,7 +8470,7 @@
|
|
|
8291
8470
|
{
|
|
8292
8471
|
"type": "array",
|
|
8293
8472
|
"items": {
|
|
8294
|
-
"
|
|
8473
|
+
"anyOf": [
|
|
8295
8474
|
{
|
|
8296
8475
|
"type": "integer"
|
|
8297
8476
|
}
|
|
@@ -8354,7 +8533,7 @@
|
|
|
8354
8533
|
{
|
|
8355
8534
|
"type": "array",
|
|
8356
8535
|
"items": {
|
|
8357
|
-
"
|
|
8536
|
+
"anyOf": [
|
|
8358
8537
|
{
|
|
8359
8538
|
"type": "integer"
|
|
8360
8539
|
}
|
|
@@ -8538,7 +8717,7 @@
|
|
|
8538
8717
|
"description": "data-testid attribute of the element to click. Supports exact match or regex pattern using /pattern/ syntax."
|
|
8539
8718
|
},
|
|
8540
8719
|
"elementClass": {
|
|
8541
|
-
"
|
|
8720
|
+
"anyOf": [
|
|
8542
8721
|
{
|
|
8543
8722
|
"type": "string"
|
|
8544
8723
|
},
|
|
@@ -8555,7 +8734,7 @@
|
|
|
8555
8734
|
"type": "object",
|
|
8556
8735
|
"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.",
|
|
8557
8736
|
"additionalProperties": {
|
|
8558
|
-
"
|
|
8737
|
+
"anyOf": [
|
|
8559
8738
|
{
|
|
8560
8739
|
"type": "string"
|
|
8561
8740
|
},
|
|
@@ -8661,7 +8840,7 @@
|
|
|
8661
8840
|
"description": "data-testid attribute of the element to click. Supports exact match or regex pattern using /pattern/ syntax."
|
|
8662
8841
|
},
|
|
8663
8842
|
"elementClass": {
|
|
8664
|
-
"
|
|
8843
|
+
"anyOf": [
|
|
8665
8844
|
{
|
|
8666
8845
|
"type": "string"
|
|
8667
8846
|
},
|
|
@@ -8678,7 +8857,7 @@
|
|
|
8678
8857
|
"type": "object",
|
|
8679
8858
|
"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.",
|
|
8680
8859
|
"additionalProperties": {
|
|
8681
|
-
"
|
|
8860
|
+
"anyOf": [
|
|
8682
8861
|
{
|
|
8683
8862
|
"type": "string"
|
|
8684
8863
|
},
|
|
@@ -8853,7 +9032,7 @@
|
|
|
8853
9032
|
"description": "data-testid attribute of the element to find. Supports exact match or regex pattern using /pattern/ syntax."
|
|
8854
9033
|
},
|
|
8855
9034
|
"elementClass": {
|
|
8856
|
-
"
|
|
9035
|
+
"anyOf": [
|
|
8857
9036
|
{
|
|
8858
9037
|
"type": "string"
|
|
8859
9038
|
},
|
|
@@ -8870,7 +9049,7 @@
|
|
|
8870
9049
|
"type": "object",
|
|
8871
9050
|
"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.",
|
|
8872
9051
|
"additionalProperties": {
|
|
8873
|
-
"
|
|
9052
|
+
"anyOf": [
|
|
8874
9053
|
{
|
|
8875
9054
|
"type": "string"
|
|
8876
9055
|
},
|
|
@@ -8977,7 +9156,7 @@
|
|
|
8977
9156
|
"description": "data-testid attribute of the element to click. Supports exact match or regex pattern using /pattern/ syntax."
|
|
8978
9157
|
},
|
|
8979
9158
|
"elementClass": {
|
|
8980
|
-
"
|
|
9159
|
+
"anyOf": [
|
|
8981
9160
|
{
|
|
8982
9161
|
"type": "string"
|
|
8983
9162
|
},
|
|
@@ -8994,7 +9173,7 @@
|
|
|
8994
9173
|
"type": "object",
|
|
8995
9174
|
"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.",
|
|
8996
9175
|
"additionalProperties": {
|
|
8997
|
-
"
|
|
9176
|
+
"anyOf": [
|
|
8998
9177
|
{
|
|
8999
9178
|
"type": "string"
|
|
9000
9179
|
},
|
|
@@ -9100,7 +9279,7 @@
|
|
|
9100
9279
|
"description": "data-testid attribute of the element to click. Supports exact match or regex pattern using /pattern/ syntax."
|
|
9101
9280
|
},
|
|
9102
9281
|
"elementClass": {
|
|
9103
|
-
"
|
|
9282
|
+
"anyOf": [
|
|
9104
9283
|
{
|
|
9105
9284
|
"type": "string"
|
|
9106
9285
|
},
|
|
@@ -9117,7 +9296,7 @@
|
|
|
9117
9296
|
"type": "object",
|
|
9118
9297
|
"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.",
|
|
9119
9298
|
"additionalProperties": {
|
|
9120
|
-
"
|
|
9299
|
+
"anyOf": [
|
|
9121
9300
|
{
|
|
9122
9301
|
"type": "string"
|
|
9123
9302
|
},
|
|
@@ -9187,7 +9366,7 @@
|
|
|
9187
9366
|
{
|
|
9188
9367
|
"type": "array",
|
|
9189
9368
|
"items": {
|
|
9190
|
-
"
|
|
9369
|
+
"anyOf": [
|
|
9191
9370
|
{
|
|
9192
9371
|
"type": "string"
|
|
9193
9372
|
}
|
|
@@ -9210,7 +9389,7 @@
|
|
|
9210
9389
|
{
|
|
9211
9390
|
"type": "array",
|
|
9212
9391
|
"items": {
|
|
9213
|
-
"
|
|
9392
|
+
"anyOf": [
|
|
9214
9393
|
{
|
|
9215
9394
|
"type": "string"
|
|
9216
9395
|
}
|
|
@@ -9241,7 +9420,7 @@
|
|
|
9241
9420
|
"description": "data-testid attribute of the element to find. Supports exact match or regex pattern using /pattern/ syntax."
|
|
9242
9421
|
},
|
|
9243
9422
|
"elementClass": {
|
|
9244
|
-
"
|
|
9423
|
+
"anyOf": [
|
|
9245
9424
|
{
|
|
9246
9425
|
"type": "string"
|
|
9247
9426
|
},
|
|
@@ -9258,7 +9437,7 @@
|
|
|
9258
9437
|
"type": "object",
|
|
9259
9438
|
"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.",
|
|
9260
9439
|
"additionalProperties": {
|
|
9261
|
-
"
|
|
9440
|
+
"anyOf": [
|
|
9262
9441
|
{
|
|
9263
9442
|
"type": "string"
|
|
9264
9443
|
},
|
|
@@ -9294,7 +9473,7 @@
|
|
|
9294
9473
|
{
|
|
9295
9474
|
"type": "array",
|
|
9296
9475
|
"items": {
|
|
9297
|
-
"
|
|
9476
|
+
"anyOf": [
|
|
9298
9477
|
{
|
|
9299
9478
|
"type": "string"
|
|
9300
9479
|
}
|
|
@@ -9317,7 +9496,7 @@
|
|
|
9317
9496
|
{
|
|
9318
9497
|
"type": "array",
|
|
9319
9498
|
"items": {
|
|
9320
|
-
"
|
|
9499
|
+
"anyOf": [
|
|
9321
9500
|
{
|
|
9322
9501
|
"type": "string"
|
|
9323
9502
|
}
|
|
@@ -9348,7 +9527,7 @@
|
|
|
9348
9527
|
"description": "data-testid attribute of the element to find. Supports exact match or regex pattern using /pattern/ syntax."
|
|
9349
9528
|
},
|
|
9350
9529
|
"elementClass": {
|
|
9351
|
-
"
|
|
9530
|
+
"anyOf": [
|
|
9352
9531
|
{
|
|
9353
9532
|
"type": "string"
|
|
9354
9533
|
},
|
|
@@ -9365,7 +9544,7 @@
|
|
|
9365
9544
|
"type": "object",
|
|
9366
9545
|
"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.",
|
|
9367
9546
|
"additionalProperties": {
|
|
9368
|
-
"
|
|
9547
|
+
"anyOf": [
|
|
9369
9548
|
{
|
|
9370
9549
|
"type": "string"
|
|
9371
9550
|
},
|
|
@@ -9502,7 +9681,7 @@
|
|
|
9502
9681
|
"description": "data-testid attribute of the element to find. Supports exact match or regex pattern using /pattern/ syntax."
|
|
9503
9682
|
},
|
|
9504
9683
|
"elementClass": {
|
|
9505
|
-
"
|
|
9684
|
+
"anyOf": [
|
|
9506
9685
|
{
|
|
9507
9686
|
"type": "string"
|
|
9508
9687
|
},
|
|
@@ -9519,7 +9698,7 @@
|
|
|
9519
9698
|
"type": "object",
|
|
9520
9699
|
"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.",
|
|
9521
9700
|
"additionalProperties": {
|
|
9522
|
-
"
|
|
9701
|
+
"anyOf": [
|
|
9523
9702
|
{
|
|
9524
9703
|
"type": "string"
|
|
9525
9704
|
},
|
|
@@ -9626,7 +9805,7 @@
|
|
|
9626
9805
|
"description": "data-testid attribute of the element to click. Supports exact match or regex pattern using /pattern/ syntax."
|
|
9627
9806
|
},
|
|
9628
9807
|
"elementClass": {
|
|
9629
|
-
"
|
|
9808
|
+
"anyOf": [
|
|
9630
9809
|
{
|
|
9631
9810
|
"type": "string"
|
|
9632
9811
|
},
|
|
@@ -9643,7 +9822,7 @@
|
|
|
9643
9822
|
"type": "object",
|
|
9644
9823
|
"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.",
|
|
9645
9824
|
"additionalProperties": {
|
|
9646
|
-
"
|
|
9825
|
+
"anyOf": [
|
|
9647
9826
|
{
|
|
9648
9827
|
"type": "string"
|
|
9649
9828
|
},
|
|
@@ -9749,7 +9928,7 @@
|
|
|
9749
9928
|
"description": "data-testid attribute of the element to click. Supports exact match or regex pattern using /pattern/ syntax."
|
|
9750
9929
|
},
|
|
9751
9930
|
"elementClass": {
|
|
9752
|
-
"
|
|
9931
|
+
"anyOf": [
|
|
9753
9932
|
{
|
|
9754
9933
|
"type": "string"
|
|
9755
9934
|
},
|
|
@@ -9766,7 +9945,7 @@
|
|
|
9766
9945
|
"type": "object",
|
|
9767
9946
|
"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.",
|
|
9768
9947
|
"additionalProperties": {
|
|
9769
|
-
"
|
|
9948
|
+
"anyOf": [
|
|
9770
9949
|
{
|
|
9771
9950
|
"type": "string"
|
|
9772
9951
|
},
|
|
@@ -9836,7 +10015,7 @@
|
|
|
9836
10015
|
{
|
|
9837
10016
|
"type": "array",
|
|
9838
10017
|
"items": {
|
|
9839
|
-
"
|
|
10018
|
+
"anyOf": [
|
|
9840
10019
|
{
|
|
9841
10020
|
"type": "string"
|
|
9842
10021
|
}
|
|
@@ -9859,7 +10038,7 @@
|
|
|
9859
10038
|
{
|
|
9860
10039
|
"type": "array",
|
|
9861
10040
|
"items": {
|
|
9862
|
-
"
|
|
10041
|
+
"anyOf": [
|
|
9863
10042
|
{
|
|
9864
10043
|
"type": "string"
|
|
9865
10044
|
}
|
|
@@ -9890,7 +10069,7 @@
|
|
|
9890
10069
|
"description": "data-testid attribute of the element to find. Supports exact match or regex pattern using /pattern/ syntax."
|
|
9891
10070
|
},
|
|
9892
10071
|
"elementClass": {
|
|
9893
|
-
"
|
|
10072
|
+
"anyOf": [
|
|
9894
10073
|
{
|
|
9895
10074
|
"type": "string"
|
|
9896
10075
|
},
|
|
@@ -9907,7 +10086,7 @@
|
|
|
9907
10086
|
"type": "object",
|
|
9908
10087
|
"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.",
|
|
9909
10088
|
"additionalProperties": {
|
|
9910
|
-
"
|
|
10089
|
+
"anyOf": [
|
|
9911
10090
|
{
|
|
9912
10091
|
"type": "string"
|
|
9913
10092
|
},
|
|
@@ -9943,7 +10122,7 @@
|
|
|
9943
10122
|
{
|
|
9944
10123
|
"type": "array",
|
|
9945
10124
|
"items": {
|
|
9946
|
-
"
|
|
10125
|
+
"anyOf": [
|
|
9947
10126
|
{
|
|
9948
10127
|
"type": "string"
|
|
9949
10128
|
}
|
|
@@ -9966,7 +10145,7 @@
|
|
|
9966
10145
|
{
|
|
9967
10146
|
"type": "array",
|
|
9968
10147
|
"items": {
|
|
9969
|
-
"
|
|
10148
|
+
"anyOf": [
|
|
9970
10149
|
{
|
|
9971
10150
|
"type": "string"
|
|
9972
10151
|
}
|
|
@@ -9997,7 +10176,7 @@
|
|
|
9997
10176
|
"description": "data-testid attribute of the element to find. Supports exact match or regex pattern using /pattern/ syntax."
|
|
9998
10177
|
},
|
|
9999
10178
|
"elementClass": {
|
|
10000
|
-
"
|
|
10179
|
+
"anyOf": [
|
|
10001
10180
|
{
|
|
10002
10181
|
"type": "string"
|
|
10003
10182
|
},
|
|
@@ -10014,7 +10193,7 @@
|
|
|
10014
10193
|
"type": "object",
|
|
10015
10194
|
"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.",
|
|
10016
10195
|
"additionalProperties": {
|
|
10017
|
-
"
|
|
10196
|
+
"anyOf": [
|
|
10018
10197
|
{
|
|
10019
10198
|
"type": "string"
|
|
10020
10199
|
},
|
|
@@ -10117,6 +10296,19 @@
|
|
|
10117
10296
|
],
|
|
10118
10297
|
"inputDelay": 100
|
|
10119
10298
|
}
|
|
10299
|
+
},
|
|
10300
|
+
{
|
|
10301
|
+
"elementId": "/^user-[0-9]+$/",
|
|
10302
|
+
"elementClass": [
|
|
10303
|
+
"admin",
|
|
10304
|
+
"/^level-[1-5]$/"
|
|
10305
|
+
],
|
|
10306
|
+
"elementAttribute": {
|
|
10307
|
+
"data-active": true,
|
|
10308
|
+
"data-score": "/^[0-9]+$/"
|
|
10309
|
+
},
|
|
10310
|
+
"timeout": 8000,
|
|
10311
|
+
"moveTo": false
|
|
10120
10312
|
}
|
|
10121
10313
|
]
|
|
10122
10314
|
}
|
|
@@ -10226,6 +10418,72 @@
|
|
|
10226
10418
|
"transform": [
|
|
10227
10419
|
"trim"
|
|
10228
10420
|
]
|
|
10421
|
+
},
|
|
10422
|
+
"timeout": {
|
|
10423
|
+
"type": "integer",
|
|
10424
|
+
"description": "Maximum time in milliseconds to wait for the page to be ready. If exceeded, the goTo action fails.",
|
|
10425
|
+
"default": 30000,
|
|
10426
|
+
"minimum": 0
|
|
10427
|
+
},
|
|
10428
|
+
"waitUntil": {
|
|
10429
|
+
"type": "object",
|
|
10430
|
+
"description": "Configuration for waiting conditions after navigation.",
|
|
10431
|
+
"additionalProperties": false,
|
|
10432
|
+
"properties": {
|
|
10433
|
+
"networkIdleTime": {
|
|
10434
|
+
"description": "Wait for network activity to be idle (no new requests) for this duration in milliseconds. Set to `null` to skip this check.",
|
|
10435
|
+
"anyOf": [
|
|
10436
|
+
{
|
|
10437
|
+
"type": "integer",
|
|
10438
|
+
"minimum": 0
|
|
10439
|
+
},
|
|
10440
|
+
{
|
|
10441
|
+
"type": "null"
|
|
10442
|
+
}
|
|
10443
|
+
],
|
|
10444
|
+
"default": 500
|
|
10445
|
+
},
|
|
10446
|
+
"domIdleTime": {
|
|
10447
|
+
"description": "Wait for DOM mutations to stop for this duration in milliseconds. Set to `null` to skip this check.",
|
|
10448
|
+
"anyOf": [
|
|
10449
|
+
{
|
|
10450
|
+
"type": "integer",
|
|
10451
|
+
"minimum": 0
|
|
10452
|
+
},
|
|
10453
|
+
{
|
|
10454
|
+
"type": "null"
|
|
10455
|
+
}
|
|
10456
|
+
],
|
|
10457
|
+
"default": 1000
|
|
10458
|
+
},
|
|
10459
|
+
"find": {
|
|
10460
|
+
"type": "object",
|
|
10461
|
+
"description": "Wait for a specific element to be present in the DOM. At least one of selector or elementText must be specified.",
|
|
10462
|
+
"additionalProperties": false,
|
|
10463
|
+
"anyOf": [
|
|
10464
|
+
{
|
|
10465
|
+
"required": [
|
|
10466
|
+
"selector"
|
|
10467
|
+
]
|
|
10468
|
+
},
|
|
10469
|
+
{
|
|
10470
|
+
"required": [
|
|
10471
|
+
"elementText"
|
|
10472
|
+
]
|
|
10473
|
+
}
|
|
10474
|
+
],
|
|
10475
|
+
"properties": {
|
|
10476
|
+
"selector": {
|
|
10477
|
+
"type": "string",
|
|
10478
|
+
"description": "CSS selector for the element to wait for."
|
|
10479
|
+
},
|
|
10480
|
+
"elementText": {
|
|
10481
|
+
"type": "string",
|
|
10482
|
+
"description": "Text content the element must contain."
|
|
10483
|
+
}
|
|
10484
|
+
}
|
|
10485
|
+
}
|
|
10486
|
+
}
|
|
10229
10487
|
}
|
|
10230
10488
|
},
|
|
10231
10489
|
"title": "Go to URL (detailed)"
|
|
@@ -10264,6 +10522,72 @@
|
|
|
10264
10522
|
"transform": [
|
|
10265
10523
|
"trim"
|
|
10266
10524
|
]
|
|
10525
|
+
},
|
|
10526
|
+
"timeout": {
|
|
10527
|
+
"type": "integer",
|
|
10528
|
+
"description": "Maximum time in milliseconds to wait for the page to be ready. If exceeded, the goTo action fails.",
|
|
10529
|
+
"default": 30000,
|
|
10530
|
+
"minimum": 0
|
|
10531
|
+
},
|
|
10532
|
+
"waitUntil": {
|
|
10533
|
+
"type": "object",
|
|
10534
|
+
"description": "Configuration for waiting conditions after navigation.",
|
|
10535
|
+
"additionalProperties": false,
|
|
10536
|
+
"properties": {
|
|
10537
|
+
"networkIdleTime": {
|
|
10538
|
+
"description": "Wait for network activity to be idle (no new requests) for this duration in milliseconds. Set to `null` to skip this check.",
|
|
10539
|
+
"anyOf": [
|
|
10540
|
+
{
|
|
10541
|
+
"type": "integer",
|
|
10542
|
+
"minimum": 0
|
|
10543
|
+
},
|
|
10544
|
+
{
|
|
10545
|
+
"type": "null"
|
|
10546
|
+
}
|
|
10547
|
+
],
|
|
10548
|
+
"default": 500
|
|
10549
|
+
},
|
|
10550
|
+
"domIdleTime": {
|
|
10551
|
+
"description": "Wait for DOM mutations to stop for this duration in milliseconds. Set to `null` to skip this check.",
|
|
10552
|
+
"anyOf": [
|
|
10553
|
+
{
|
|
10554
|
+
"type": "integer",
|
|
10555
|
+
"minimum": 0
|
|
10556
|
+
},
|
|
10557
|
+
{
|
|
10558
|
+
"type": "null"
|
|
10559
|
+
}
|
|
10560
|
+
],
|
|
10561
|
+
"default": 1000
|
|
10562
|
+
},
|
|
10563
|
+
"find": {
|
|
10564
|
+
"type": "object",
|
|
10565
|
+
"description": "Wait for a specific element to be present in the DOM. At least one of selector or elementText must be specified.",
|
|
10566
|
+
"additionalProperties": false,
|
|
10567
|
+
"anyOf": [
|
|
10568
|
+
{
|
|
10569
|
+
"required": [
|
|
10570
|
+
"selector"
|
|
10571
|
+
]
|
|
10572
|
+
},
|
|
10573
|
+
{
|
|
10574
|
+
"required": [
|
|
10575
|
+
"elementText"
|
|
10576
|
+
]
|
|
10577
|
+
}
|
|
10578
|
+
],
|
|
10579
|
+
"properties": {
|
|
10580
|
+
"selector": {
|
|
10581
|
+
"type": "string",
|
|
10582
|
+
"description": "CSS selector for the element to wait for."
|
|
10583
|
+
},
|
|
10584
|
+
"elementText": {
|
|
10585
|
+
"type": "string",
|
|
10586
|
+
"description": "Text content the element must contain."
|
|
10587
|
+
}
|
|
10588
|
+
}
|
|
10589
|
+
}
|
|
10590
|
+
}
|
|
10267
10591
|
}
|
|
10268
10592
|
},
|
|
10269
10593
|
"title": "Go to URL (detailed)"
|
|
@@ -10278,7 +10602,41 @@
|
|
|
10278
10602
|
},
|
|
10279
10603
|
{
|
|
10280
10604
|
"url": "/search",
|
|
10281
|
-
"origin": "www.google.com"
|
|
10605
|
+
"origin": "https://www.google.com"
|
|
10606
|
+
},
|
|
10607
|
+
{
|
|
10608
|
+
"url": "https://www.example.com",
|
|
10609
|
+
"waitUntil": {
|
|
10610
|
+
"networkIdleTime": 500
|
|
10611
|
+
}
|
|
10612
|
+
},
|
|
10613
|
+
{
|
|
10614
|
+
"url": "https://www.example.com/dashboard",
|
|
10615
|
+
"waitUntil": {
|
|
10616
|
+
"find": {
|
|
10617
|
+
"selector": "[data-testid='dashboard-loaded']"
|
|
10618
|
+
}
|
|
10619
|
+
}
|
|
10620
|
+
},
|
|
10621
|
+
{
|
|
10622
|
+
"url": "https://www.example.com/app",
|
|
10623
|
+
"timeout": 60000,
|
|
10624
|
+
"waitUntil": {
|
|
10625
|
+
"networkIdleTime": 500,
|
|
10626
|
+
"domIdleTime": 1000,
|
|
10627
|
+
"find": {
|
|
10628
|
+
"selector": ".main-content",
|
|
10629
|
+
"elementText": "Dashboard"
|
|
10630
|
+
}
|
|
10631
|
+
}
|
|
10632
|
+
},
|
|
10633
|
+
{
|
|
10634
|
+
"url": "https://www.example.com/status",
|
|
10635
|
+
"waitUntil": {
|
|
10636
|
+
"find": {
|
|
10637
|
+
"elementText": "System operational"
|
|
10638
|
+
}
|
|
10639
|
+
}
|
|
10282
10640
|
}
|
|
10283
10641
|
]
|
|
10284
10642
|
}
|
|
@@ -10586,7 +10944,7 @@
|
|
|
10586
10944
|
"description": "Accepted status codes. If the specified URL returns a code other than what is specified here, the action fails.",
|
|
10587
10945
|
"type": "array",
|
|
10588
10946
|
"items": {
|
|
10589
|
-
"
|
|
10947
|
+
"anyOf": [
|
|
10590
10948
|
{
|
|
10591
10949
|
"type": "integer"
|
|
10592
10950
|
}
|
|
@@ -10985,7 +11343,7 @@
|
|
|
10985
11343
|
"description": "Accepted status codes. If the specified URL returns a code other than what is specified here, the action fails.",
|
|
10986
11344
|
"type": "array",
|
|
10987
11345
|
"items": {
|
|
10988
|
-
"
|
|
11346
|
+
"anyOf": [
|
|
10989
11347
|
{
|
|
10990
11348
|
"type": "integer"
|
|
10991
11349
|
}
|
|
@@ -11446,7 +11804,7 @@
|
|
|
11446
11804
|
"type": "array",
|
|
11447
11805
|
"description": "Arguments for the command.",
|
|
11448
11806
|
"items": {
|
|
11449
|
-
"
|
|
11807
|
+
"anyOf": [
|
|
11450
11808
|
{
|
|
11451
11809
|
"type": "string"
|
|
11452
11810
|
}
|
|
@@ -11463,7 +11821,7 @@
|
|
|
11463
11821
|
"type": "array",
|
|
11464
11822
|
"description": "Expected exit codes of the command. If the command's actual exit code isn't in this list, the step fails.",
|
|
11465
11823
|
"items": {
|
|
11466
|
-
"
|
|
11824
|
+
"anyOf": [
|
|
11467
11825
|
{
|
|
11468
11826
|
"type": "integer"
|
|
11469
11827
|
}
|
|
@@ -11536,7 +11894,7 @@
|
|
|
11536
11894
|
"type": "array",
|
|
11537
11895
|
"description": "Arguments for the command.",
|
|
11538
11896
|
"items": {
|
|
11539
|
-
"
|
|
11897
|
+
"anyOf": [
|
|
11540
11898
|
{
|
|
11541
11899
|
"type": "string"
|
|
11542
11900
|
}
|
|
@@ -11553,7 +11911,7 @@
|
|
|
11553
11911
|
"type": "array",
|
|
11554
11912
|
"description": "Expected exit codes of the command. If the command's actual exit code isn't in this list, the step fails.",
|
|
11555
11913
|
"items": {
|
|
11556
|
-
"
|
|
11914
|
+
"anyOf": [
|
|
11557
11915
|
{
|
|
11558
11916
|
"type": "integer"
|
|
11559
11917
|
}
|
|
@@ -11754,7 +12112,7 @@
|
|
|
11754
12112
|
"type": "array",
|
|
11755
12113
|
"description": "Arguments for the command.",
|
|
11756
12114
|
"items": {
|
|
11757
|
-
"
|
|
12115
|
+
"anyOf": [
|
|
11758
12116
|
{
|
|
11759
12117
|
"type": "string"
|
|
11760
12118
|
}
|
|
@@ -11771,7 +12129,7 @@
|
|
|
11771
12129
|
"type": "array",
|
|
11772
12130
|
"description": "Expected exit codes of the command. If the command's actual exit code isn't in this list, the step fails.",
|
|
11773
12131
|
"items": {
|
|
11774
|
-
"
|
|
12132
|
+
"anyOf": [
|
|
11775
12133
|
{
|
|
11776
12134
|
"type": "integer"
|
|
11777
12135
|
}
|
|
@@ -11845,7 +12203,7 @@
|
|
|
11845
12203
|
"type": "array",
|
|
11846
12204
|
"description": "Arguments for the command.",
|
|
11847
12205
|
"items": {
|
|
11848
|
-
"
|
|
12206
|
+
"anyOf": [
|
|
11849
12207
|
{
|
|
11850
12208
|
"type": "string"
|
|
11851
12209
|
}
|
|
@@ -11862,7 +12220,7 @@
|
|
|
11862
12220
|
"type": "array",
|
|
11863
12221
|
"description": "Expected exit codes of the command. If the command's actual exit code isn't in this list, the step fails.",
|
|
11864
12222
|
"items": {
|
|
11865
|
-
"
|
|
12223
|
+
"anyOf": [
|
|
11866
12224
|
{
|
|
11867
12225
|
"type": "integer"
|
|
11868
12226
|
}
|
|
@@ -12033,7 +12391,7 @@
|
|
|
12033
12391
|
{
|
|
12034
12392
|
"type": "array",
|
|
12035
12393
|
"items": {
|
|
12036
|
-
"
|
|
12394
|
+
"anyOf": [
|
|
12037
12395
|
{
|
|
12038
12396
|
"type": "string"
|
|
12039
12397
|
}
|
|
@@ -12056,7 +12414,7 @@
|
|
|
12056
12414
|
{
|
|
12057
12415
|
"type": "array",
|
|
12058
12416
|
"items": {
|
|
12059
|
-
"
|
|
12417
|
+
"anyOf": [
|
|
12060
12418
|
{
|
|
12061
12419
|
"type": "string"
|
|
12062
12420
|
}
|
|
@@ -12087,7 +12445,7 @@
|
|
|
12087
12445
|
"description": "data-testid attribute of the element to find. Supports exact match or regex pattern using /pattern/ syntax."
|
|
12088
12446
|
},
|
|
12089
12447
|
"elementClass": {
|
|
12090
|
-
"
|
|
12448
|
+
"anyOf": [
|
|
12091
12449
|
{
|
|
12092
12450
|
"type": "string"
|
|
12093
12451
|
},
|
|
@@ -12104,7 +12462,7 @@
|
|
|
12104
12462
|
"type": "object",
|
|
12105
12463
|
"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.",
|
|
12106
12464
|
"additionalProperties": {
|
|
12107
|
-
"
|
|
12465
|
+
"anyOf": [
|
|
12108
12466
|
{
|
|
12109
12467
|
"type": "string"
|
|
12110
12468
|
},
|
|
@@ -12140,7 +12498,7 @@
|
|
|
12140
12498
|
{
|
|
12141
12499
|
"type": "array",
|
|
12142
12500
|
"items": {
|
|
12143
|
-
"
|
|
12501
|
+
"anyOf": [
|
|
12144
12502
|
{
|
|
12145
12503
|
"type": "string"
|
|
12146
12504
|
}
|
|
@@ -12163,7 +12521,7 @@
|
|
|
12163
12521
|
{
|
|
12164
12522
|
"type": "array",
|
|
12165
12523
|
"items": {
|
|
12166
|
-
"
|
|
12524
|
+
"anyOf": [
|
|
12167
12525
|
{
|
|
12168
12526
|
"type": "string"
|
|
12169
12527
|
}
|
|
@@ -12194,7 +12552,7 @@
|
|
|
12194
12552
|
"description": "data-testid attribute of the element to find. Supports exact match or regex pattern using /pattern/ syntax."
|
|
12195
12553
|
},
|
|
12196
12554
|
"elementClass": {
|
|
12197
|
-
"
|
|
12555
|
+
"anyOf": [
|
|
12198
12556
|
{
|
|
12199
12557
|
"type": "string"
|
|
12200
12558
|
},
|
|
@@ -12211,7 +12569,7 @@
|
|
|
12211
12569
|
"type": "object",
|
|
12212
12570
|
"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.",
|
|
12213
12571
|
"additionalProperties": {
|
|
12214
|
-
"
|
|
12572
|
+
"anyOf": [
|
|
12215
12573
|
{
|
|
12216
12574
|
"type": "string"
|
|
12217
12575
|
},
|
|
@@ -12451,7 +12809,7 @@
|
|
|
12451
12809
|
"description": "data-testid attribute of the element to find. Supports exact match or regex pattern using /pattern/ syntax."
|
|
12452
12810
|
},
|
|
12453
12811
|
"elementClass": {
|
|
12454
|
-
"
|
|
12812
|
+
"anyOf": [
|
|
12455
12813
|
{
|
|
12456
12814
|
"type": "string"
|
|
12457
12815
|
},
|
|
@@ -12468,7 +12826,7 @@
|
|
|
12468
12826
|
"type": "object",
|
|
12469
12827
|
"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.",
|
|
12470
12828
|
"additionalProperties": {
|
|
12471
|
-
"
|
|
12829
|
+
"anyOf": [
|
|
12472
12830
|
{
|
|
12473
12831
|
"type": "string"
|
|
12474
12832
|
},
|
|
@@ -12647,7 +13005,7 @@
|
|
|
12647
13005
|
"description": "data-testid attribute of the element to find. Supports exact match or regex pattern using /pattern/ syntax."
|
|
12648
13006
|
},
|
|
12649
13007
|
"elementClass": {
|
|
12650
|
-
"
|
|
13008
|
+
"anyOf": [
|
|
12651
13009
|
{
|
|
12652
13010
|
"type": "string"
|
|
12653
13011
|
},
|
|
@@ -12664,7 +13022,7 @@
|
|
|
12664
13022
|
"type": "object",
|
|
12665
13023
|
"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.",
|
|
12666
13024
|
"additionalProperties": {
|
|
12667
|
-
"
|
|
13025
|
+
"anyOf": [
|
|
12668
13026
|
{
|
|
12669
13027
|
"type": "string"
|
|
12670
13028
|
},
|
|
@@ -12782,7 +13140,7 @@
|
|
|
12782
13140
|
"description": "data-testid attribute of the element to find. Supports exact match or regex pattern using /pattern/ syntax."
|
|
12783
13141
|
},
|
|
12784
13142
|
"elementClass": {
|
|
12785
|
-
"
|
|
13143
|
+
"anyOf": [
|
|
12786
13144
|
{
|
|
12787
13145
|
"type": "string"
|
|
12788
13146
|
},
|
|
@@ -12799,7 +13157,7 @@
|
|
|
12799
13157
|
"type": "object",
|
|
12800
13158
|
"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.",
|
|
12801
13159
|
"additionalProperties": {
|
|
12802
|
-
"
|
|
13160
|
+
"anyOf": [
|
|
12803
13161
|
{
|
|
12804
13162
|
"type": "string"
|
|
12805
13163
|
},
|