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
|
@@ -51,7 +51,7 @@
|
|
|
51
51
|
"type": "array",
|
|
52
52
|
"description": "Contexts to run the test in. Overrides contexts defined at the config and spec levels.",
|
|
53
53
|
"items": {
|
|
54
|
-
"
|
|
54
|
+
"anyOf": [
|
|
55
55
|
{
|
|
56
56
|
"$schema": "http://json-schema.org/draft-07/schema#",
|
|
57
57
|
"title": "context",
|
|
@@ -644,7 +644,7 @@
|
|
|
644
644
|
"type": "array",
|
|
645
645
|
"description": "Contexts to run the test in. Overrides contexts defined at the config and spec levels.",
|
|
646
646
|
"items": {
|
|
647
|
-
"
|
|
647
|
+
"anyOf": [
|
|
648
648
|
{
|
|
649
649
|
"$schema": "http://json-schema.org/draft-07/schema#",
|
|
650
650
|
"title": "context",
|
|
@@ -1445,7 +1445,7 @@
|
|
|
1445
1445
|
{
|
|
1446
1446
|
"type": "array",
|
|
1447
1447
|
"items": {
|
|
1448
|
-
"
|
|
1448
|
+
"anyOf": [
|
|
1449
1449
|
{
|
|
1450
1450
|
"type": "integer"
|
|
1451
1451
|
}
|
|
@@ -1508,7 +1508,7 @@
|
|
|
1508
1508
|
{
|
|
1509
1509
|
"type": "array",
|
|
1510
1510
|
"items": {
|
|
1511
|
-
"
|
|
1511
|
+
"anyOf": [
|
|
1512
1512
|
{
|
|
1513
1513
|
"type": "integer"
|
|
1514
1514
|
}
|
|
@@ -1692,7 +1692,7 @@
|
|
|
1692
1692
|
"description": "data-testid attribute of the element to click. Supports exact match or regex pattern using /pattern/ syntax."
|
|
1693
1693
|
},
|
|
1694
1694
|
"elementClass": {
|
|
1695
|
-
"
|
|
1695
|
+
"anyOf": [
|
|
1696
1696
|
{
|
|
1697
1697
|
"type": "string"
|
|
1698
1698
|
},
|
|
@@ -1709,7 +1709,7 @@
|
|
|
1709
1709
|
"type": "object",
|
|
1710
1710
|
"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.",
|
|
1711
1711
|
"additionalProperties": {
|
|
1712
|
-
"
|
|
1712
|
+
"anyOf": [
|
|
1713
1713
|
{
|
|
1714
1714
|
"type": "string"
|
|
1715
1715
|
},
|
|
@@ -1815,7 +1815,7 @@
|
|
|
1815
1815
|
"description": "data-testid attribute of the element to click. Supports exact match or regex pattern using /pattern/ syntax."
|
|
1816
1816
|
},
|
|
1817
1817
|
"elementClass": {
|
|
1818
|
-
"
|
|
1818
|
+
"anyOf": [
|
|
1819
1819
|
{
|
|
1820
1820
|
"type": "string"
|
|
1821
1821
|
},
|
|
@@ -1832,7 +1832,7 @@
|
|
|
1832
1832
|
"type": "object",
|
|
1833
1833
|
"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.",
|
|
1834
1834
|
"additionalProperties": {
|
|
1835
|
-
"
|
|
1835
|
+
"anyOf": [
|
|
1836
1836
|
{
|
|
1837
1837
|
"type": "string"
|
|
1838
1838
|
},
|
|
@@ -2007,7 +2007,7 @@
|
|
|
2007
2007
|
"description": "data-testid attribute of the element to find. Supports exact match or regex pattern using /pattern/ syntax."
|
|
2008
2008
|
},
|
|
2009
2009
|
"elementClass": {
|
|
2010
|
-
"
|
|
2010
|
+
"anyOf": [
|
|
2011
2011
|
{
|
|
2012
2012
|
"type": "string"
|
|
2013
2013
|
},
|
|
@@ -2024,7 +2024,7 @@
|
|
|
2024
2024
|
"type": "object",
|
|
2025
2025
|
"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.",
|
|
2026
2026
|
"additionalProperties": {
|
|
2027
|
-
"
|
|
2027
|
+
"anyOf": [
|
|
2028
2028
|
{
|
|
2029
2029
|
"type": "string"
|
|
2030
2030
|
},
|
|
@@ -2131,7 +2131,7 @@
|
|
|
2131
2131
|
"description": "data-testid attribute of the element to click. Supports exact match or regex pattern using /pattern/ syntax."
|
|
2132
2132
|
},
|
|
2133
2133
|
"elementClass": {
|
|
2134
|
-
"
|
|
2134
|
+
"anyOf": [
|
|
2135
2135
|
{
|
|
2136
2136
|
"type": "string"
|
|
2137
2137
|
},
|
|
@@ -2148,7 +2148,7 @@
|
|
|
2148
2148
|
"type": "object",
|
|
2149
2149
|
"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.",
|
|
2150
2150
|
"additionalProperties": {
|
|
2151
|
-
"
|
|
2151
|
+
"anyOf": [
|
|
2152
2152
|
{
|
|
2153
2153
|
"type": "string"
|
|
2154
2154
|
},
|
|
@@ -2254,7 +2254,7 @@
|
|
|
2254
2254
|
"description": "data-testid attribute of the element to click. Supports exact match or regex pattern using /pattern/ syntax."
|
|
2255
2255
|
},
|
|
2256
2256
|
"elementClass": {
|
|
2257
|
-
"
|
|
2257
|
+
"anyOf": [
|
|
2258
2258
|
{
|
|
2259
2259
|
"type": "string"
|
|
2260
2260
|
},
|
|
@@ -2271,7 +2271,7 @@
|
|
|
2271
2271
|
"type": "object",
|
|
2272
2272
|
"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.",
|
|
2273
2273
|
"additionalProperties": {
|
|
2274
|
-
"
|
|
2274
|
+
"anyOf": [
|
|
2275
2275
|
{
|
|
2276
2276
|
"type": "string"
|
|
2277
2277
|
},
|
|
@@ -2341,7 +2341,7 @@
|
|
|
2341
2341
|
{
|
|
2342
2342
|
"type": "array",
|
|
2343
2343
|
"items": {
|
|
2344
|
-
"
|
|
2344
|
+
"anyOf": [
|
|
2345
2345
|
{
|
|
2346
2346
|
"type": "string"
|
|
2347
2347
|
}
|
|
@@ -2364,7 +2364,7 @@
|
|
|
2364
2364
|
{
|
|
2365
2365
|
"type": "array",
|
|
2366
2366
|
"items": {
|
|
2367
|
-
"
|
|
2367
|
+
"anyOf": [
|
|
2368
2368
|
{
|
|
2369
2369
|
"type": "string"
|
|
2370
2370
|
}
|
|
@@ -2395,7 +2395,7 @@
|
|
|
2395
2395
|
"description": "data-testid attribute of the element to find. Supports exact match or regex pattern using /pattern/ syntax."
|
|
2396
2396
|
},
|
|
2397
2397
|
"elementClass": {
|
|
2398
|
-
"
|
|
2398
|
+
"anyOf": [
|
|
2399
2399
|
{
|
|
2400
2400
|
"type": "string"
|
|
2401
2401
|
},
|
|
@@ -2412,7 +2412,7 @@
|
|
|
2412
2412
|
"type": "object",
|
|
2413
2413
|
"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.",
|
|
2414
2414
|
"additionalProperties": {
|
|
2415
|
-
"
|
|
2415
|
+
"anyOf": [
|
|
2416
2416
|
{
|
|
2417
2417
|
"type": "string"
|
|
2418
2418
|
},
|
|
@@ -2448,7 +2448,7 @@
|
|
|
2448
2448
|
{
|
|
2449
2449
|
"type": "array",
|
|
2450
2450
|
"items": {
|
|
2451
|
-
"
|
|
2451
|
+
"anyOf": [
|
|
2452
2452
|
{
|
|
2453
2453
|
"type": "string"
|
|
2454
2454
|
}
|
|
@@ -2471,7 +2471,7 @@
|
|
|
2471
2471
|
{
|
|
2472
2472
|
"type": "array",
|
|
2473
2473
|
"items": {
|
|
2474
|
-
"
|
|
2474
|
+
"anyOf": [
|
|
2475
2475
|
{
|
|
2476
2476
|
"type": "string"
|
|
2477
2477
|
}
|
|
@@ -2502,7 +2502,7 @@
|
|
|
2502
2502
|
"description": "data-testid attribute of the element to find. Supports exact match or regex pattern using /pattern/ syntax."
|
|
2503
2503
|
},
|
|
2504
2504
|
"elementClass": {
|
|
2505
|
-
"
|
|
2505
|
+
"anyOf": [
|
|
2506
2506
|
{
|
|
2507
2507
|
"type": "string"
|
|
2508
2508
|
},
|
|
@@ -2519,7 +2519,7 @@
|
|
|
2519
2519
|
"type": "object",
|
|
2520
2520
|
"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.",
|
|
2521
2521
|
"additionalProperties": {
|
|
2522
|
-
"
|
|
2522
|
+
"anyOf": [
|
|
2523
2523
|
{
|
|
2524
2524
|
"type": "string"
|
|
2525
2525
|
},
|
|
@@ -2656,7 +2656,7 @@
|
|
|
2656
2656
|
"description": "data-testid attribute of the element to find. Supports exact match or regex pattern using /pattern/ syntax."
|
|
2657
2657
|
},
|
|
2658
2658
|
"elementClass": {
|
|
2659
|
-
"
|
|
2659
|
+
"anyOf": [
|
|
2660
2660
|
{
|
|
2661
2661
|
"type": "string"
|
|
2662
2662
|
},
|
|
@@ -2673,7 +2673,7 @@
|
|
|
2673
2673
|
"type": "object",
|
|
2674
2674
|
"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.",
|
|
2675
2675
|
"additionalProperties": {
|
|
2676
|
-
"
|
|
2676
|
+
"anyOf": [
|
|
2677
2677
|
{
|
|
2678
2678
|
"type": "string"
|
|
2679
2679
|
},
|
|
@@ -2780,7 +2780,7 @@
|
|
|
2780
2780
|
"description": "data-testid attribute of the element to click. Supports exact match or regex pattern using /pattern/ syntax."
|
|
2781
2781
|
},
|
|
2782
2782
|
"elementClass": {
|
|
2783
|
-
"
|
|
2783
|
+
"anyOf": [
|
|
2784
2784
|
{
|
|
2785
2785
|
"type": "string"
|
|
2786
2786
|
},
|
|
@@ -2797,7 +2797,7 @@
|
|
|
2797
2797
|
"type": "object",
|
|
2798
2798
|
"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.",
|
|
2799
2799
|
"additionalProperties": {
|
|
2800
|
-
"
|
|
2800
|
+
"anyOf": [
|
|
2801
2801
|
{
|
|
2802
2802
|
"type": "string"
|
|
2803
2803
|
},
|
|
@@ -2903,7 +2903,7 @@
|
|
|
2903
2903
|
"description": "data-testid attribute of the element to click. Supports exact match or regex pattern using /pattern/ syntax."
|
|
2904
2904
|
},
|
|
2905
2905
|
"elementClass": {
|
|
2906
|
-
"
|
|
2906
|
+
"anyOf": [
|
|
2907
2907
|
{
|
|
2908
2908
|
"type": "string"
|
|
2909
2909
|
},
|
|
@@ -2920,7 +2920,7 @@
|
|
|
2920
2920
|
"type": "object",
|
|
2921
2921
|
"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.",
|
|
2922
2922
|
"additionalProperties": {
|
|
2923
|
-
"
|
|
2923
|
+
"anyOf": [
|
|
2924
2924
|
{
|
|
2925
2925
|
"type": "string"
|
|
2926
2926
|
},
|
|
@@ -2990,7 +2990,7 @@
|
|
|
2990
2990
|
{
|
|
2991
2991
|
"type": "array",
|
|
2992
2992
|
"items": {
|
|
2993
|
-
"
|
|
2993
|
+
"anyOf": [
|
|
2994
2994
|
{
|
|
2995
2995
|
"type": "string"
|
|
2996
2996
|
}
|
|
@@ -3013,7 +3013,7 @@
|
|
|
3013
3013
|
{
|
|
3014
3014
|
"type": "array",
|
|
3015
3015
|
"items": {
|
|
3016
|
-
"
|
|
3016
|
+
"anyOf": [
|
|
3017
3017
|
{
|
|
3018
3018
|
"type": "string"
|
|
3019
3019
|
}
|
|
@@ -3044,7 +3044,7 @@
|
|
|
3044
3044
|
"description": "data-testid attribute of the element to find. Supports exact match or regex pattern using /pattern/ syntax."
|
|
3045
3045
|
},
|
|
3046
3046
|
"elementClass": {
|
|
3047
|
-
"
|
|
3047
|
+
"anyOf": [
|
|
3048
3048
|
{
|
|
3049
3049
|
"type": "string"
|
|
3050
3050
|
},
|
|
@@ -3061,7 +3061,7 @@
|
|
|
3061
3061
|
"type": "object",
|
|
3062
3062
|
"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.",
|
|
3063
3063
|
"additionalProperties": {
|
|
3064
|
-
"
|
|
3064
|
+
"anyOf": [
|
|
3065
3065
|
{
|
|
3066
3066
|
"type": "string"
|
|
3067
3067
|
},
|
|
@@ -3097,7 +3097,7 @@
|
|
|
3097
3097
|
{
|
|
3098
3098
|
"type": "array",
|
|
3099
3099
|
"items": {
|
|
3100
|
-
"
|
|
3100
|
+
"anyOf": [
|
|
3101
3101
|
{
|
|
3102
3102
|
"type": "string"
|
|
3103
3103
|
}
|
|
@@ -3120,7 +3120,7 @@
|
|
|
3120
3120
|
{
|
|
3121
3121
|
"type": "array",
|
|
3122
3122
|
"items": {
|
|
3123
|
-
"
|
|
3123
|
+
"anyOf": [
|
|
3124
3124
|
{
|
|
3125
3125
|
"type": "string"
|
|
3126
3126
|
}
|
|
@@ -3151,7 +3151,7 @@
|
|
|
3151
3151
|
"description": "data-testid attribute of the element to find. Supports exact match or regex pattern using /pattern/ syntax."
|
|
3152
3152
|
},
|
|
3153
3153
|
"elementClass": {
|
|
3154
|
-
"
|
|
3154
|
+
"anyOf": [
|
|
3155
3155
|
{
|
|
3156
3156
|
"type": "string"
|
|
3157
3157
|
},
|
|
@@ -3168,7 +3168,7 @@
|
|
|
3168
3168
|
"type": "object",
|
|
3169
3169
|
"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.",
|
|
3170
3170
|
"additionalProperties": {
|
|
3171
|
-
"
|
|
3171
|
+
"anyOf": [
|
|
3172
3172
|
{
|
|
3173
3173
|
"type": "string"
|
|
3174
3174
|
},
|
|
@@ -3271,6 +3271,19 @@
|
|
|
3271
3271
|
],
|
|
3272
3272
|
"inputDelay": 100
|
|
3273
3273
|
}
|
|
3274
|
+
},
|
|
3275
|
+
{
|
|
3276
|
+
"elementId": "/^user-[0-9]+$/",
|
|
3277
|
+
"elementClass": [
|
|
3278
|
+
"admin",
|
|
3279
|
+
"/^level-[1-5]$/"
|
|
3280
|
+
],
|
|
3281
|
+
"elementAttribute": {
|
|
3282
|
+
"data-active": true,
|
|
3283
|
+
"data-score": "/^[0-9]+$/"
|
|
3284
|
+
},
|
|
3285
|
+
"timeout": 8000,
|
|
3286
|
+
"moveTo": false
|
|
3274
3287
|
}
|
|
3275
3288
|
]
|
|
3276
3289
|
}
|
|
@@ -3380,6 +3393,72 @@
|
|
|
3380
3393
|
"transform": [
|
|
3381
3394
|
"trim"
|
|
3382
3395
|
]
|
|
3396
|
+
},
|
|
3397
|
+
"timeout": {
|
|
3398
|
+
"type": "integer",
|
|
3399
|
+
"description": "Maximum time in milliseconds to wait for the page to be ready. If exceeded, the goTo action fails.",
|
|
3400
|
+
"default": 30000,
|
|
3401
|
+
"minimum": 0
|
|
3402
|
+
},
|
|
3403
|
+
"waitUntil": {
|
|
3404
|
+
"type": "object",
|
|
3405
|
+
"description": "Configuration for waiting conditions after navigation.",
|
|
3406
|
+
"additionalProperties": false,
|
|
3407
|
+
"properties": {
|
|
3408
|
+
"networkIdleTime": {
|
|
3409
|
+
"description": "Wait for network activity to be idle (no new requests) for this duration in milliseconds. Set to `null` to skip this check.",
|
|
3410
|
+
"anyOf": [
|
|
3411
|
+
{
|
|
3412
|
+
"type": "integer",
|
|
3413
|
+
"minimum": 0
|
|
3414
|
+
},
|
|
3415
|
+
{
|
|
3416
|
+
"type": "null"
|
|
3417
|
+
}
|
|
3418
|
+
],
|
|
3419
|
+
"default": 500
|
|
3420
|
+
},
|
|
3421
|
+
"domIdleTime": {
|
|
3422
|
+
"description": "Wait for DOM mutations to stop for this duration in milliseconds. Set to `null` to skip this check.",
|
|
3423
|
+
"anyOf": [
|
|
3424
|
+
{
|
|
3425
|
+
"type": "integer",
|
|
3426
|
+
"minimum": 0
|
|
3427
|
+
},
|
|
3428
|
+
{
|
|
3429
|
+
"type": "null"
|
|
3430
|
+
}
|
|
3431
|
+
],
|
|
3432
|
+
"default": 1000
|
|
3433
|
+
},
|
|
3434
|
+
"find": {
|
|
3435
|
+
"type": "object",
|
|
3436
|
+
"description": "Wait for a specific element to be present in the DOM. At least one of selector or elementText must be specified.",
|
|
3437
|
+
"additionalProperties": false,
|
|
3438
|
+
"anyOf": [
|
|
3439
|
+
{
|
|
3440
|
+
"required": [
|
|
3441
|
+
"selector"
|
|
3442
|
+
]
|
|
3443
|
+
},
|
|
3444
|
+
{
|
|
3445
|
+
"required": [
|
|
3446
|
+
"elementText"
|
|
3447
|
+
]
|
|
3448
|
+
}
|
|
3449
|
+
],
|
|
3450
|
+
"properties": {
|
|
3451
|
+
"selector": {
|
|
3452
|
+
"type": "string",
|
|
3453
|
+
"description": "CSS selector for the element to wait for."
|
|
3454
|
+
},
|
|
3455
|
+
"elementText": {
|
|
3456
|
+
"type": "string",
|
|
3457
|
+
"description": "Text content the element must contain."
|
|
3458
|
+
}
|
|
3459
|
+
}
|
|
3460
|
+
}
|
|
3461
|
+
}
|
|
3383
3462
|
}
|
|
3384
3463
|
},
|
|
3385
3464
|
"title": "Go to URL (detailed)"
|
|
@@ -3418,6 +3497,72 @@
|
|
|
3418
3497
|
"transform": [
|
|
3419
3498
|
"trim"
|
|
3420
3499
|
]
|
|
3500
|
+
},
|
|
3501
|
+
"timeout": {
|
|
3502
|
+
"type": "integer",
|
|
3503
|
+
"description": "Maximum time in milliseconds to wait for the page to be ready. If exceeded, the goTo action fails.",
|
|
3504
|
+
"default": 30000,
|
|
3505
|
+
"minimum": 0
|
|
3506
|
+
},
|
|
3507
|
+
"waitUntil": {
|
|
3508
|
+
"type": "object",
|
|
3509
|
+
"description": "Configuration for waiting conditions after navigation.",
|
|
3510
|
+
"additionalProperties": false,
|
|
3511
|
+
"properties": {
|
|
3512
|
+
"networkIdleTime": {
|
|
3513
|
+
"description": "Wait for network activity to be idle (no new requests) for this duration in milliseconds. Set to `null` to skip this check.",
|
|
3514
|
+
"anyOf": [
|
|
3515
|
+
{
|
|
3516
|
+
"type": "integer",
|
|
3517
|
+
"minimum": 0
|
|
3518
|
+
},
|
|
3519
|
+
{
|
|
3520
|
+
"type": "null"
|
|
3521
|
+
}
|
|
3522
|
+
],
|
|
3523
|
+
"default": 500
|
|
3524
|
+
},
|
|
3525
|
+
"domIdleTime": {
|
|
3526
|
+
"description": "Wait for DOM mutations to stop for this duration in milliseconds. Set to `null` to skip this check.",
|
|
3527
|
+
"anyOf": [
|
|
3528
|
+
{
|
|
3529
|
+
"type": "integer",
|
|
3530
|
+
"minimum": 0
|
|
3531
|
+
},
|
|
3532
|
+
{
|
|
3533
|
+
"type": "null"
|
|
3534
|
+
}
|
|
3535
|
+
],
|
|
3536
|
+
"default": 1000
|
|
3537
|
+
},
|
|
3538
|
+
"find": {
|
|
3539
|
+
"type": "object",
|
|
3540
|
+
"description": "Wait for a specific element to be present in the DOM. At least one of selector or elementText must be specified.",
|
|
3541
|
+
"additionalProperties": false,
|
|
3542
|
+
"anyOf": [
|
|
3543
|
+
{
|
|
3544
|
+
"required": [
|
|
3545
|
+
"selector"
|
|
3546
|
+
]
|
|
3547
|
+
},
|
|
3548
|
+
{
|
|
3549
|
+
"required": [
|
|
3550
|
+
"elementText"
|
|
3551
|
+
]
|
|
3552
|
+
}
|
|
3553
|
+
],
|
|
3554
|
+
"properties": {
|
|
3555
|
+
"selector": {
|
|
3556
|
+
"type": "string",
|
|
3557
|
+
"description": "CSS selector for the element to wait for."
|
|
3558
|
+
},
|
|
3559
|
+
"elementText": {
|
|
3560
|
+
"type": "string",
|
|
3561
|
+
"description": "Text content the element must contain."
|
|
3562
|
+
}
|
|
3563
|
+
}
|
|
3564
|
+
}
|
|
3565
|
+
}
|
|
3421
3566
|
}
|
|
3422
3567
|
},
|
|
3423
3568
|
"title": "Go to URL (detailed)"
|
|
@@ -3432,7 +3577,41 @@
|
|
|
3432
3577
|
},
|
|
3433
3578
|
{
|
|
3434
3579
|
"url": "/search",
|
|
3435
|
-
"origin": "www.google.com"
|
|
3580
|
+
"origin": "https://www.google.com"
|
|
3581
|
+
},
|
|
3582
|
+
{
|
|
3583
|
+
"url": "https://www.example.com",
|
|
3584
|
+
"waitUntil": {
|
|
3585
|
+
"networkIdleTime": 500
|
|
3586
|
+
}
|
|
3587
|
+
},
|
|
3588
|
+
{
|
|
3589
|
+
"url": "https://www.example.com/dashboard",
|
|
3590
|
+
"waitUntil": {
|
|
3591
|
+
"find": {
|
|
3592
|
+
"selector": "[data-testid='dashboard-loaded']"
|
|
3593
|
+
}
|
|
3594
|
+
}
|
|
3595
|
+
},
|
|
3596
|
+
{
|
|
3597
|
+
"url": "https://www.example.com/app",
|
|
3598
|
+
"timeout": 60000,
|
|
3599
|
+
"waitUntil": {
|
|
3600
|
+
"networkIdleTime": 500,
|
|
3601
|
+
"domIdleTime": 1000,
|
|
3602
|
+
"find": {
|
|
3603
|
+
"selector": ".main-content",
|
|
3604
|
+
"elementText": "Dashboard"
|
|
3605
|
+
}
|
|
3606
|
+
}
|
|
3607
|
+
},
|
|
3608
|
+
{
|
|
3609
|
+
"url": "https://www.example.com/status",
|
|
3610
|
+
"waitUntil": {
|
|
3611
|
+
"find": {
|
|
3612
|
+
"elementText": "System operational"
|
|
3613
|
+
}
|
|
3614
|
+
}
|
|
3436
3615
|
}
|
|
3437
3616
|
]
|
|
3438
3617
|
}
|
|
@@ -3740,7 +3919,7 @@
|
|
|
3740
3919
|
"description": "Accepted status codes. If the specified URL returns a code other than what is specified here, the action fails.",
|
|
3741
3920
|
"type": "array",
|
|
3742
3921
|
"items": {
|
|
3743
|
-
"
|
|
3922
|
+
"anyOf": [
|
|
3744
3923
|
{
|
|
3745
3924
|
"type": "integer"
|
|
3746
3925
|
}
|
|
@@ -4139,7 +4318,7 @@
|
|
|
4139
4318
|
"description": "Accepted status codes. If the specified URL returns a code other than what is specified here, the action fails.",
|
|
4140
4319
|
"type": "array",
|
|
4141
4320
|
"items": {
|
|
4142
|
-
"
|
|
4321
|
+
"anyOf": [
|
|
4143
4322
|
{
|
|
4144
4323
|
"type": "integer"
|
|
4145
4324
|
}
|
|
@@ -4600,7 +4779,7 @@
|
|
|
4600
4779
|
"type": "array",
|
|
4601
4780
|
"description": "Arguments for the command.",
|
|
4602
4781
|
"items": {
|
|
4603
|
-
"
|
|
4782
|
+
"anyOf": [
|
|
4604
4783
|
{
|
|
4605
4784
|
"type": "string"
|
|
4606
4785
|
}
|
|
@@ -4617,7 +4796,7 @@
|
|
|
4617
4796
|
"type": "array",
|
|
4618
4797
|
"description": "Expected exit codes of the command. If the command's actual exit code isn't in this list, the step fails.",
|
|
4619
4798
|
"items": {
|
|
4620
|
-
"
|
|
4799
|
+
"anyOf": [
|
|
4621
4800
|
{
|
|
4622
4801
|
"type": "integer"
|
|
4623
4802
|
}
|
|
@@ -4690,7 +4869,7 @@
|
|
|
4690
4869
|
"type": "array",
|
|
4691
4870
|
"description": "Arguments for the command.",
|
|
4692
4871
|
"items": {
|
|
4693
|
-
"
|
|
4872
|
+
"anyOf": [
|
|
4694
4873
|
{
|
|
4695
4874
|
"type": "string"
|
|
4696
4875
|
}
|
|
@@ -4707,7 +4886,7 @@
|
|
|
4707
4886
|
"type": "array",
|
|
4708
4887
|
"description": "Expected exit codes of the command. If the command's actual exit code isn't in this list, the step fails.",
|
|
4709
4888
|
"items": {
|
|
4710
|
-
"
|
|
4889
|
+
"anyOf": [
|
|
4711
4890
|
{
|
|
4712
4891
|
"type": "integer"
|
|
4713
4892
|
}
|
|
@@ -4908,7 +5087,7 @@
|
|
|
4908
5087
|
"type": "array",
|
|
4909
5088
|
"description": "Arguments for the command.",
|
|
4910
5089
|
"items": {
|
|
4911
|
-
"
|
|
5090
|
+
"anyOf": [
|
|
4912
5091
|
{
|
|
4913
5092
|
"type": "string"
|
|
4914
5093
|
}
|
|
@@ -4925,7 +5104,7 @@
|
|
|
4925
5104
|
"type": "array",
|
|
4926
5105
|
"description": "Expected exit codes of the command. If the command's actual exit code isn't in this list, the step fails.",
|
|
4927
5106
|
"items": {
|
|
4928
|
-
"
|
|
5107
|
+
"anyOf": [
|
|
4929
5108
|
{
|
|
4930
5109
|
"type": "integer"
|
|
4931
5110
|
}
|
|
@@ -4999,7 +5178,7 @@
|
|
|
4999
5178
|
"type": "array",
|
|
5000
5179
|
"description": "Arguments for the command.",
|
|
5001
5180
|
"items": {
|
|
5002
|
-
"
|
|
5181
|
+
"anyOf": [
|
|
5003
5182
|
{
|
|
5004
5183
|
"type": "string"
|
|
5005
5184
|
}
|
|
@@ -5016,7 +5195,7 @@
|
|
|
5016
5195
|
"type": "array",
|
|
5017
5196
|
"description": "Expected exit codes of the command. If the command's actual exit code isn't in this list, the step fails.",
|
|
5018
5197
|
"items": {
|
|
5019
|
-
"
|
|
5198
|
+
"anyOf": [
|
|
5020
5199
|
{
|
|
5021
5200
|
"type": "integer"
|
|
5022
5201
|
}
|
|
@@ -5187,7 +5366,7 @@
|
|
|
5187
5366
|
{
|
|
5188
5367
|
"type": "array",
|
|
5189
5368
|
"items": {
|
|
5190
|
-
"
|
|
5369
|
+
"anyOf": [
|
|
5191
5370
|
{
|
|
5192
5371
|
"type": "string"
|
|
5193
5372
|
}
|
|
@@ -5210,7 +5389,7 @@
|
|
|
5210
5389
|
{
|
|
5211
5390
|
"type": "array",
|
|
5212
5391
|
"items": {
|
|
5213
|
-
"
|
|
5392
|
+
"anyOf": [
|
|
5214
5393
|
{
|
|
5215
5394
|
"type": "string"
|
|
5216
5395
|
}
|
|
@@ -5241,7 +5420,7 @@
|
|
|
5241
5420
|
"description": "data-testid attribute of the element to find. Supports exact match or regex pattern using /pattern/ syntax."
|
|
5242
5421
|
},
|
|
5243
5422
|
"elementClass": {
|
|
5244
|
-
"
|
|
5423
|
+
"anyOf": [
|
|
5245
5424
|
{
|
|
5246
5425
|
"type": "string"
|
|
5247
5426
|
},
|
|
@@ -5258,7 +5437,7 @@
|
|
|
5258
5437
|
"type": "object",
|
|
5259
5438
|
"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.",
|
|
5260
5439
|
"additionalProperties": {
|
|
5261
|
-
"
|
|
5440
|
+
"anyOf": [
|
|
5262
5441
|
{
|
|
5263
5442
|
"type": "string"
|
|
5264
5443
|
},
|
|
@@ -5294,7 +5473,7 @@
|
|
|
5294
5473
|
{
|
|
5295
5474
|
"type": "array",
|
|
5296
5475
|
"items": {
|
|
5297
|
-
"
|
|
5476
|
+
"anyOf": [
|
|
5298
5477
|
{
|
|
5299
5478
|
"type": "string"
|
|
5300
5479
|
}
|
|
@@ -5317,7 +5496,7 @@
|
|
|
5317
5496
|
{
|
|
5318
5497
|
"type": "array",
|
|
5319
5498
|
"items": {
|
|
5320
|
-
"
|
|
5499
|
+
"anyOf": [
|
|
5321
5500
|
{
|
|
5322
5501
|
"type": "string"
|
|
5323
5502
|
}
|
|
@@ -5348,7 +5527,7 @@
|
|
|
5348
5527
|
"description": "data-testid attribute of the element to find. Supports exact match or regex pattern using /pattern/ syntax."
|
|
5349
5528
|
},
|
|
5350
5529
|
"elementClass": {
|
|
5351
|
-
"
|
|
5530
|
+
"anyOf": [
|
|
5352
5531
|
{
|
|
5353
5532
|
"type": "string"
|
|
5354
5533
|
},
|
|
@@ -5365,7 +5544,7 @@
|
|
|
5365
5544
|
"type": "object",
|
|
5366
5545
|
"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.",
|
|
5367
5546
|
"additionalProperties": {
|
|
5368
|
-
"
|
|
5547
|
+
"anyOf": [
|
|
5369
5548
|
{
|
|
5370
5549
|
"type": "string"
|
|
5371
5550
|
},
|
|
@@ -5605,7 +5784,7 @@
|
|
|
5605
5784
|
"description": "data-testid attribute of the element to find. Supports exact match or regex pattern using /pattern/ syntax."
|
|
5606
5785
|
},
|
|
5607
5786
|
"elementClass": {
|
|
5608
|
-
"
|
|
5787
|
+
"anyOf": [
|
|
5609
5788
|
{
|
|
5610
5789
|
"type": "string"
|
|
5611
5790
|
},
|
|
@@ -5622,7 +5801,7 @@
|
|
|
5622
5801
|
"type": "object",
|
|
5623
5802
|
"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.",
|
|
5624
5803
|
"additionalProperties": {
|
|
5625
|
-
"
|
|
5804
|
+
"anyOf": [
|
|
5626
5805
|
{
|
|
5627
5806
|
"type": "string"
|
|
5628
5807
|
},
|
|
@@ -5801,7 +5980,7 @@
|
|
|
5801
5980
|
"description": "data-testid attribute of the element to find. Supports exact match or regex pattern using /pattern/ syntax."
|
|
5802
5981
|
},
|
|
5803
5982
|
"elementClass": {
|
|
5804
|
-
"
|
|
5983
|
+
"anyOf": [
|
|
5805
5984
|
{
|
|
5806
5985
|
"type": "string"
|
|
5807
5986
|
},
|
|
@@ -5818,7 +5997,7 @@
|
|
|
5818
5997
|
"type": "object",
|
|
5819
5998
|
"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.",
|
|
5820
5999
|
"additionalProperties": {
|
|
5821
|
-
"
|
|
6000
|
+
"anyOf": [
|
|
5822
6001
|
{
|
|
5823
6002
|
"type": "string"
|
|
5824
6003
|
},
|
|
@@ -5936,7 +6115,7 @@
|
|
|
5936
6115
|
"description": "data-testid attribute of the element to find. Supports exact match or regex pattern using /pattern/ syntax."
|
|
5937
6116
|
},
|
|
5938
6117
|
"elementClass": {
|
|
5939
|
-
"
|
|
6118
|
+
"anyOf": [
|
|
5940
6119
|
{
|
|
5941
6120
|
"type": "string"
|
|
5942
6121
|
},
|
|
@@ -5953,7 +6132,7 @@
|
|
|
5953
6132
|
"type": "object",
|
|
5954
6133
|
"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.",
|
|
5955
6134
|
"additionalProperties": {
|
|
5956
|
-
"
|
|
6135
|
+
"anyOf": [
|
|
5957
6136
|
{
|
|
5958
6137
|
"type": "string"
|
|
5959
6138
|
},
|
|
@@ -8309,7 +8488,7 @@
|
|
|
8309
8488
|
{
|
|
8310
8489
|
"type": "array",
|
|
8311
8490
|
"items": {
|
|
8312
|
-
"
|
|
8491
|
+
"anyOf": [
|
|
8313
8492
|
{
|
|
8314
8493
|
"type": "integer"
|
|
8315
8494
|
}
|
|
@@ -8372,7 +8551,7 @@
|
|
|
8372
8551
|
{
|
|
8373
8552
|
"type": "array",
|
|
8374
8553
|
"items": {
|
|
8375
|
-
"
|
|
8554
|
+
"anyOf": [
|
|
8376
8555
|
{
|
|
8377
8556
|
"type": "integer"
|
|
8378
8557
|
}
|
|
@@ -8556,7 +8735,7 @@
|
|
|
8556
8735
|
"description": "data-testid attribute of the element to click. Supports exact match or regex pattern using /pattern/ syntax."
|
|
8557
8736
|
},
|
|
8558
8737
|
"elementClass": {
|
|
8559
|
-
"
|
|
8738
|
+
"anyOf": [
|
|
8560
8739
|
{
|
|
8561
8740
|
"type": "string"
|
|
8562
8741
|
},
|
|
@@ -8573,7 +8752,7 @@
|
|
|
8573
8752
|
"type": "object",
|
|
8574
8753
|
"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.",
|
|
8575
8754
|
"additionalProperties": {
|
|
8576
|
-
"
|
|
8755
|
+
"anyOf": [
|
|
8577
8756
|
{
|
|
8578
8757
|
"type": "string"
|
|
8579
8758
|
},
|
|
@@ -8679,7 +8858,7 @@
|
|
|
8679
8858
|
"description": "data-testid attribute of the element to click. Supports exact match or regex pattern using /pattern/ syntax."
|
|
8680
8859
|
},
|
|
8681
8860
|
"elementClass": {
|
|
8682
|
-
"
|
|
8861
|
+
"anyOf": [
|
|
8683
8862
|
{
|
|
8684
8863
|
"type": "string"
|
|
8685
8864
|
},
|
|
@@ -8696,7 +8875,7 @@
|
|
|
8696
8875
|
"type": "object",
|
|
8697
8876
|
"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.",
|
|
8698
8877
|
"additionalProperties": {
|
|
8699
|
-
"
|
|
8878
|
+
"anyOf": [
|
|
8700
8879
|
{
|
|
8701
8880
|
"type": "string"
|
|
8702
8881
|
},
|
|
@@ -8871,7 +9050,7 @@
|
|
|
8871
9050
|
"description": "data-testid attribute of the element to find. Supports exact match or regex pattern using /pattern/ syntax."
|
|
8872
9051
|
},
|
|
8873
9052
|
"elementClass": {
|
|
8874
|
-
"
|
|
9053
|
+
"anyOf": [
|
|
8875
9054
|
{
|
|
8876
9055
|
"type": "string"
|
|
8877
9056
|
},
|
|
@@ -8888,7 +9067,7 @@
|
|
|
8888
9067
|
"type": "object",
|
|
8889
9068
|
"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.",
|
|
8890
9069
|
"additionalProperties": {
|
|
8891
|
-
"
|
|
9070
|
+
"anyOf": [
|
|
8892
9071
|
{
|
|
8893
9072
|
"type": "string"
|
|
8894
9073
|
},
|
|
@@ -8995,7 +9174,7 @@
|
|
|
8995
9174
|
"description": "data-testid attribute of the element to click. Supports exact match or regex pattern using /pattern/ syntax."
|
|
8996
9175
|
},
|
|
8997
9176
|
"elementClass": {
|
|
8998
|
-
"
|
|
9177
|
+
"anyOf": [
|
|
8999
9178
|
{
|
|
9000
9179
|
"type": "string"
|
|
9001
9180
|
},
|
|
@@ -9012,7 +9191,7 @@
|
|
|
9012
9191
|
"type": "object",
|
|
9013
9192
|
"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.",
|
|
9014
9193
|
"additionalProperties": {
|
|
9015
|
-
"
|
|
9194
|
+
"anyOf": [
|
|
9016
9195
|
{
|
|
9017
9196
|
"type": "string"
|
|
9018
9197
|
},
|
|
@@ -9118,7 +9297,7 @@
|
|
|
9118
9297
|
"description": "data-testid attribute of the element to click. Supports exact match or regex pattern using /pattern/ syntax."
|
|
9119
9298
|
},
|
|
9120
9299
|
"elementClass": {
|
|
9121
|
-
"
|
|
9300
|
+
"anyOf": [
|
|
9122
9301
|
{
|
|
9123
9302
|
"type": "string"
|
|
9124
9303
|
},
|
|
@@ -9135,7 +9314,7 @@
|
|
|
9135
9314
|
"type": "object",
|
|
9136
9315
|
"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.",
|
|
9137
9316
|
"additionalProperties": {
|
|
9138
|
-
"
|
|
9317
|
+
"anyOf": [
|
|
9139
9318
|
{
|
|
9140
9319
|
"type": "string"
|
|
9141
9320
|
},
|
|
@@ -9205,7 +9384,7 @@
|
|
|
9205
9384
|
{
|
|
9206
9385
|
"type": "array",
|
|
9207
9386
|
"items": {
|
|
9208
|
-
"
|
|
9387
|
+
"anyOf": [
|
|
9209
9388
|
{
|
|
9210
9389
|
"type": "string"
|
|
9211
9390
|
}
|
|
@@ -9228,7 +9407,7 @@
|
|
|
9228
9407
|
{
|
|
9229
9408
|
"type": "array",
|
|
9230
9409
|
"items": {
|
|
9231
|
-
"
|
|
9410
|
+
"anyOf": [
|
|
9232
9411
|
{
|
|
9233
9412
|
"type": "string"
|
|
9234
9413
|
}
|
|
@@ -9259,7 +9438,7 @@
|
|
|
9259
9438
|
"description": "data-testid attribute of the element to find. Supports exact match or regex pattern using /pattern/ syntax."
|
|
9260
9439
|
},
|
|
9261
9440
|
"elementClass": {
|
|
9262
|
-
"
|
|
9441
|
+
"anyOf": [
|
|
9263
9442
|
{
|
|
9264
9443
|
"type": "string"
|
|
9265
9444
|
},
|
|
@@ -9276,7 +9455,7 @@
|
|
|
9276
9455
|
"type": "object",
|
|
9277
9456
|
"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.",
|
|
9278
9457
|
"additionalProperties": {
|
|
9279
|
-
"
|
|
9458
|
+
"anyOf": [
|
|
9280
9459
|
{
|
|
9281
9460
|
"type": "string"
|
|
9282
9461
|
},
|
|
@@ -9312,7 +9491,7 @@
|
|
|
9312
9491
|
{
|
|
9313
9492
|
"type": "array",
|
|
9314
9493
|
"items": {
|
|
9315
|
-
"
|
|
9494
|
+
"anyOf": [
|
|
9316
9495
|
{
|
|
9317
9496
|
"type": "string"
|
|
9318
9497
|
}
|
|
@@ -9335,7 +9514,7 @@
|
|
|
9335
9514
|
{
|
|
9336
9515
|
"type": "array",
|
|
9337
9516
|
"items": {
|
|
9338
|
-
"
|
|
9517
|
+
"anyOf": [
|
|
9339
9518
|
{
|
|
9340
9519
|
"type": "string"
|
|
9341
9520
|
}
|
|
@@ -9366,7 +9545,7 @@
|
|
|
9366
9545
|
"description": "data-testid attribute of the element to find. Supports exact match or regex pattern using /pattern/ syntax."
|
|
9367
9546
|
},
|
|
9368
9547
|
"elementClass": {
|
|
9369
|
-
"
|
|
9548
|
+
"anyOf": [
|
|
9370
9549
|
{
|
|
9371
9550
|
"type": "string"
|
|
9372
9551
|
},
|
|
@@ -9383,7 +9562,7 @@
|
|
|
9383
9562
|
"type": "object",
|
|
9384
9563
|
"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.",
|
|
9385
9564
|
"additionalProperties": {
|
|
9386
|
-
"
|
|
9565
|
+
"anyOf": [
|
|
9387
9566
|
{
|
|
9388
9567
|
"type": "string"
|
|
9389
9568
|
},
|
|
@@ -9520,7 +9699,7 @@
|
|
|
9520
9699
|
"description": "data-testid attribute of the element to find. Supports exact match or regex pattern using /pattern/ syntax."
|
|
9521
9700
|
},
|
|
9522
9701
|
"elementClass": {
|
|
9523
|
-
"
|
|
9702
|
+
"anyOf": [
|
|
9524
9703
|
{
|
|
9525
9704
|
"type": "string"
|
|
9526
9705
|
},
|
|
@@ -9537,7 +9716,7 @@
|
|
|
9537
9716
|
"type": "object",
|
|
9538
9717
|
"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.",
|
|
9539
9718
|
"additionalProperties": {
|
|
9540
|
-
"
|
|
9719
|
+
"anyOf": [
|
|
9541
9720
|
{
|
|
9542
9721
|
"type": "string"
|
|
9543
9722
|
},
|
|
@@ -9644,7 +9823,7 @@
|
|
|
9644
9823
|
"description": "data-testid attribute of the element to click. Supports exact match or regex pattern using /pattern/ syntax."
|
|
9645
9824
|
},
|
|
9646
9825
|
"elementClass": {
|
|
9647
|
-
"
|
|
9826
|
+
"anyOf": [
|
|
9648
9827
|
{
|
|
9649
9828
|
"type": "string"
|
|
9650
9829
|
},
|
|
@@ -9661,7 +9840,7 @@
|
|
|
9661
9840
|
"type": "object",
|
|
9662
9841
|
"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.",
|
|
9663
9842
|
"additionalProperties": {
|
|
9664
|
-
"
|
|
9843
|
+
"anyOf": [
|
|
9665
9844
|
{
|
|
9666
9845
|
"type": "string"
|
|
9667
9846
|
},
|
|
@@ -9767,7 +9946,7 @@
|
|
|
9767
9946
|
"description": "data-testid attribute of the element to click. Supports exact match or regex pattern using /pattern/ syntax."
|
|
9768
9947
|
},
|
|
9769
9948
|
"elementClass": {
|
|
9770
|
-
"
|
|
9949
|
+
"anyOf": [
|
|
9771
9950
|
{
|
|
9772
9951
|
"type": "string"
|
|
9773
9952
|
},
|
|
@@ -9784,7 +9963,7 @@
|
|
|
9784
9963
|
"type": "object",
|
|
9785
9964
|
"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.",
|
|
9786
9965
|
"additionalProperties": {
|
|
9787
|
-
"
|
|
9966
|
+
"anyOf": [
|
|
9788
9967
|
{
|
|
9789
9968
|
"type": "string"
|
|
9790
9969
|
},
|
|
@@ -9854,7 +10033,7 @@
|
|
|
9854
10033
|
{
|
|
9855
10034
|
"type": "array",
|
|
9856
10035
|
"items": {
|
|
9857
|
-
"
|
|
10036
|
+
"anyOf": [
|
|
9858
10037
|
{
|
|
9859
10038
|
"type": "string"
|
|
9860
10039
|
}
|
|
@@ -9877,7 +10056,7 @@
|
|
|
9877
10056
|
{
|
|
9878
10057
|
"type": "array",
|
|
9879
10058
|
"items": {
|
|
9880
|
-
"
|
|
10059
|
+
"anyOf": [
|
|
9881
10060
|
{
|
|
9882
10061
|
"type": "string"
|
|
9883
10062
|
}
|
|
@@ -9908,7 +10087,7 @@
|
|
|
9908
10087
|
"description": "data-testid attribute of the element to find. Supports exact match or regex pattern using /pattern/ syntax."
|
|
9909
10088
|
},
|
|
9910
10089
|
"elementClass": {
|
|
9911
|
-
"
|
|
10090
|
+
"anyOf": [
|
|
9912
10091
|
{
|
|
9913
10092
|
"type": "string"
|
|
9914
10093
|
},
|
|
@@ -9925,7 +10104,7 @@
|
|
|
9925
10104
|
"type": "object",
|
|
9926
10105
|
"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.",
|
|
9927
10106
|
"additionalProperties": {
|
|
9928
|
-
"
|
|
10107
|
+
"anyOf": [
|
|
9929
10108
|
{
|
|
9930
10109
|
"type": "string"
|
|
9931
10110
|
},
|
|
@@ -9961,7 +10140,7 @@
|
|
|
9961
10140
|
{
|
|
9962
10141
|
"type": "array",
|
|
9963
10142
|
"items": {
|
|
9964
|
-
"
|
|
10143
|
+
"anyOf": [
|
|
9965
10144
|
{
|
|
9966
10145
|
"type": "string"
|
|
9967
10146
|
}
|
|
@@ -9984,7 +10163,7 @@
|
|
|
9984
10163
|
{
|
|
9985
10164
|
"type": "array",
|
|
9986
10165
|
"items": {
|
|
9987
|
-
"
|
|
10166
|
+
"anyOf": [
|
|
9988
10167
|
{
|
|
9989
10168
|
"type": "string"
|
|
9990
10169
|
}
|
|
@@ -10015,7 +10194,7 @@
|
|
|
10015
10194
|
"description": "data-testid attribute of the element to find. Supports exact match or regex pattern using /pattern/ syntax."
|
|
10016
10195
|
},
|
|
10017
10196
|
"elementClass": {
|
|
10018
|
-
"
|
|
10197
|
+
"anyOf": [
|
|
10019
10198
|
{
|
|
10020
10199
|
"type": "string"
|
|
10021
10200
|
},
|
|
@@ -10032,7 +10211,7 @@
|
|
|
10032
10211
|
"type": "object",
|
|
10033
10212
|
"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.",
|
|
10034
10213
|
"additionalProperties": {
|
|
10035
|
-
"
|
|
10214
|
+
"anyOf": [
|
|
10036
10215
|
{
|
|
10037
10216
|
"type": "string"
|
|
10038
10217
|
},
|
|
@@ -10135,6 +10314,19 @@
|
|
|
10135
10314
|
],
|
|
10136
10315
|
"inputDelay": 100
|
|
10137
10316
|
}
|
|
10317
|
+
},
|
|
10318
|
+
{
|
|
10319
|
+
"elementId": "/^user-[0-9]+$/",
|
|
10320
|
+
"elementClass": [
|
|
10321
|
+
"admin",
|
|
10322
|
+
"/^level-[1-5]$/"
|
|
10323
|
+
],
|
|
10324
|
+
"elementAttribute": {
|
|
10325
|
+
"data-active": true,
|
|
10326
|
+
"data-score": "/^[0-9]+$/"
|
|
10327
|
+
},
|
|
10328
|
+
"timeout": 8000,
|
|
10329
|
+
"moveTo": false
|
|
10138
10330
|
}
|
|
10139
10331
|
]
|
|
10140
10332
|
}
|
|
@@ -10244,6 +10436,72 @@
|
|
|
10244
10436
|
"transform": [
|
|
10245
10437
|
"trim"
|
|
10246
10438
|
]
|
|
10439
|
+
},
|
|
10440
|
+
"timeout": {
|
|
10441
|
+
"type": "integer",
|
|
10442
|
+
"description": "Maximum time in milliseconds to wait for the page to be ready. If exceeded, the goTo action fails.",
|
|
10443
|
+
"default": 30000,
|
|
10444
|
+
"minimum": 0
|
|
10445
|
+
},
|
|
10446
|
+
"waitUntil": {
|
|
10447
|
+
"type": "object",
|
|
10448
|
+
"description": "Configuration for waiting conditions after navigation.",
|
|
10449
|
+
"additionalProperties": false,
|
|
10450
|
+
"properties": {
|
|
10451
|
+
"networkIdleTime": {
|
|
10452
|
+
"description": "Wait for network activity to be idle (no new requests) for this duration in milliseconds. Set to `null` to skip this check.",
|
|
10453
|
+
"anyOf": [
|
|
10454
|
+
{
|
|
10455
|
+
"type": "integer",
|
|
10456
|
+
"minimum": 0
|
|
10457
|
+
},
|
|
10458
|
+
{
|
|
10459
|
+
"type": "null"
|
|
10460
|
+
}
|
|
10461
|
+
],
|
|
10462
|
+
"default": 500
|
|
10463
|
+
},
|
|
10464
|
+
"domIdleTime": {
|
|
10465
|
+
"description": "Wait for DOM mutations to stop for this duration in milliseconds. Set to `null` to skip this check.",
|
|
10466
|
+
"anyOf": [
|
|
10467
|
+
{
|
|
10468
|
+
"type": "integer",
|
|
10469
|
+
"minimum": 0
|
|
10470
|
+
},
|
|
10471
|
+
{
|
|
10472
|
+
"type": "null"
|
|
10473
|
+
}
|
|
10474
|
+
],
|
|
10475
|
+
"default": 1000
|
|
10476
|
+
},
|
|
10477
|
+
"find": {
|
|
10478
|
+
"type": "object",
|
|
10479
|
+
"description": "Wait for a specific element to be present in the DOM. At least one of selector or elementText must be specified.",
|
|
10480
|
+
"additionalProperties": false,
|
|
10481
|
+
"anyOf": [
|
|
10482
|
+
{
|
|
10483
|
+
"required": [
|
|
10484
|
+
"selector"
|
|
10485
|
+
]
|
|
10486
|
+
},
|
|
10487
|
+
{
|
|
10488
|
+
"required": [
|
|
10489
|
+
"elementText"
|
|
10490
|
+
]
|
|
10491
|
+
}
|
|
10492
|
+
],
|
|
10493
|
+
"properties": {
|
|
10494
|
+
"selector": {
|
|
10495
|
+
"type": "string",
|
|
10496
|
+
"description": "CSS selector for the element to wait for."
|
|
10497
|
+
},
|
|
10498
|
+
"elementText": {
|
|
10499
|
+
"type": "string",
|
|
10500
|
+
"description": "Text content the element must contain."
|
|
10501
|
+
}
|
|
10502
|
+
}
|
|
10503
|
+
}
|
|
10504
|
+
}
|
|
10247
10505
|
}
|
|
10248
10506
|
},
|
|
10249
10507
|
"title": "Go to URL (detailed)"
|
|
@@ -10282,6 +10540,72 @@
|
|
|
10282
10540
|
"transform": [
|
|
10283
10541
|
"trim"
|
|
10284
10542
|
]
|
|
10543
|
+
},
|
|
10544
|
+
"timeout": {
|
|
10545
|
+
"type": "integer",
|
|
10546
|
+
"description": "Maximum time in milliseconds to wait for the page to be ready. If exceeded, the goTo action fails.",
|
|
10547
|
+
"default": 30000,
|
|
10548
|
+
"minimum": 0
|
|
10549
|
+
},
|
|
10550
|
+
"waitUntil": {
|
|
10551
|
+
"type": "object",
|
|
10552
|
+
"description": "Configuration for waiting conditions after navigation.",
|
|
10553
|
+
"additionalProperties": false,
|
|
10554
|
+
"properties": {
|
|
10555
|
+
"networkIdleTime": {
|
|
10556
|
+
"description": "Wait for network activity to be idle (no new requests) for this duration in milliseconds. Set to `null` to skip this check.",
|
|
10557
|
+
"anyOf": [
|
|
10558
|
+
{
|
|
10559
|
+
"type": "integer",
|
|
10560
|
+
"minimum": 0
|
|
10561
|
+
},
|
|
10562
|
+
{
|
|
10563
|
+
"type": "null"
|
|
10564
|
+
}
|
|
10565
|
+
],
|
|
10566
|
+
"default": 500
|
|
10567
|
+
},
|
|
10568
|
+
"domIdleTime": {
|
|
10569
|
+
"description": "Wait for DOM mutations to stop for this duration in milliseconds. Set to `null` to skip this check.",
|
|
10570
|
+
"anyOf": [
|
|
10571
|
+
{
|
|
10572
|
+
"type": "integer",
|
|
10573
|
+
"minimum": 0
|
|
10574
|
+
},
|
|
10575
|
+
{
|
|
10576
|
+
"type": "null"
|
|
10577
|
+
}
|
|
10578
|
+
],
|
|
10579
|
+
"default": 1000
|
|
10580
|
+
},
|
|
10581
|
+
"find": {
|
|
10582
|
+
"type": "object",
|
|
10583
|
+
"description": "Wait for a specific element to be present in the DOM. At least one of selector or elementText must be specified.",
|
|
10584
|
+
"additionalProperties": false,
|
|
10585
|
+
"anyOf": [
|
|
10586
|
+
{
|
|
10587
|
+
"required": [
|
|
10588
|
+
"selector"
|
|
10589
|
+
]
|
|
10590
|
+
},
|
|
10591
|
+
{
|
|
10592
|
+
"required": [
|
|
10593
|
+
"elementText"
|
|
10594
|
+
]
|
|
10595
|
+
}
|
|
10596
|
+
],
|
|
10597
|
+
"properties": {
|
|
10598
|
+
"selector": {
|
|
10599
|
+
"type": "string",
|
|
10600
|
+
"description": "CSS selector for the element to wait for."
|
|
10601
|
+
},
|
|
10602
|
+
"elementText": {
|
|
10603
|
+
"type": "string",
|
|
10604
|
+
"description": "Text content the element must contain."
|
|
10605
|
+
}
|
|
10606
|
+
}
|
|
10607
|
+
}
|
|
10608
|
+
}
|
|
10285
10609
|
}
|
|
10286
10610
|
},
|
|
10287
10611
|
"title": "Go to URL (detailed)"
|
|
@@ -10296,7 +10620,41 @@
|
|
|
10296
10620
|
},
|
|
10297
10621
|
{
|
|
10298
10622
|
"url": "/search",
|
|
10299
|
-
"origin": "www.google.com"
|
|
10623
|
+
"origin": "https://www.google.com"
|
|
10624
|
+
},
|
|
10625
|
+
{
|
|
10626
|
+
"url": "https://www.example.com",
|
|
10627
|
+
"waitUntil": {
|
|
10628
|
+
"networkIdleTime": 500
|
|
10629
|
+
}
|
|
10630
|
+
},
|
|
10631
|
+
{
|
|
10632
|
+
"url": "https://www.example.com/dashboard",
|
|
10633
|
+
"waitUntil": {
|
|
10634
|
+
"find": {
|
|
10635
|
+
"selector": "[data-testid='dashboard-loaded']"
|
|
10636
|
+
}
|
|
10637
|
+
}
|
|
10638
|
+
},
|
|
10639
|
+
{
|
|
10640
|
+
"url": "https://www.example.com/app",
|
|
10641
|
+
"timeout": 60000,
|
|
10642
|
+
"waitUntil": {
|
|
10643
|
+
"networkIdleTime": 500,
|
|
10644
|
+
"domIdleTime": 1000,
|
|
10645
|
+
"find": {
|
|
10646
|
+
"selector": ".main-content",
|
|
10647
|
+
"elementText": "Dashboard"
|
|
10648
|
+
}
|
|
10649
|
+
}
|
|
10650
|
+
},
|
|
10651
|
+
{
|
|
10652
|
+
"url": "https://www.example.com/status",
|
|
10653
|
+
"waitUntil": {
|
|
10654
|
+
"find": {
|
|
10655
|
+
"elementText": "System operational"
|
|
10656
|
+
}
|
|
10657
|
+
}
|
|
10300
10658
|
}
|
|
10301
10659
|
]
|
|
10302
10660
|
}
|
|
@@ -10604,7 +10962,7 @@
|
|
|
10604
10962
|
"description": "Accepted status codes. If the specified URL returns a code other than what is specified here, the action fails.",
|
|
10605
10963
|
"type": "array",
|
|
10606
10964
|
"items": {
|
|
10607
|
-
"
|
|
10965
|
+
"anyOf": [
|
|
10608
10966
|
{
|
|
10609
10967
|
"type": "integer"
|
|
10610
10968
|
}
|
|
@@ -11003,7 +11361,7 @@
|
|
|
11003
11361
|
"description": "Accepted status codes. If the specified URL returns a code other than what is specified here, the action fails.",
|
|
11004
11362
|
"type": "array",
|
|
11005
11363
|
"items": {
|
|
11006
|
-
"
|
|
11364
|
+
"anyOf": [
|
|
11007
11365
|
{
|
|
11008
11366
|
"type": "integer"
|
|
11009
11367
|
}
|
|
@@ -11464,7 +11822,7 @@
|
|
|
11464
11822
|
"type": "array",
|
|
11465
11823
|
"description": "Arguments for the command.",
|
|
11466
11824
|
"items": {
|
|
11467
|
-
"
|
|
11825
|
+
"anyOf": [
|
|
11468
11826
|
{
|
|
11469
11827
|
"type": "string"
|
|
11470
11828
|
}
|
|
@@ -11481,7 +11839,7 @@
|
|
|
11481
11839
|
"type": "array",
|
|
11482
11840
|
"description": "Expected exit codes of the command. If the command's actual exit code isn't in this list, the step fails.",
|
|
11483
11841
|
"items": {
|
|
11484
|
-
"
|
|
11842
|
+
"anyOf": [
|
|
11485
11843
|
{
|
|
11486
11844
|
"type": "integer"
|
|
11487
11845
|
}
|
|
@@ -11554,7 +11912,7 @@
|
|
|
11554
11912
|
"type": "array",
|
|
11555
11913
|
"description": "Arguments for the command.",
|
|
11556
11914
|
"items": {
|
|
11557
|
-
"
|
|
11915
|
+
"anyOf": [
|
|
11558
11916
|
{
|
|
11559
11917
|
"type": "string"
|
|
11560
11918
|
}
|
|
@@ -11571,7 +11929,7 @@
|
|
|
11571
11929
|
"type": "array",
|
|
11572
11930
|
"description": "Expected exit codes of the command. If the command's actual exit code isn't in this list, the step fails.",
|
|
11573
11931
|
"items": {
|
|
11574
|
-
"
|
|
11932
|
+
"anyOf": [
|
|
11575
11933
|
{
|
|
11576
11934
|
"type": "integer"
|
|
11577
11935
|
}
|
|
@@ -11772,7 +12130,7 @@
|
|
|
11772
12130
|
"type": "array",
|
|
11773
12131
|
"description": "Arguments for the command.",
|
|
11774
12132
|
"items": {
|
|
11775
|
-
"
|
|
12133
|
+
"anyOf": [
|
|
11776
12134
|
{
|
|
11777
12135
|
"type": "string"
|
|
11778
12136
|
}
|
|
@@ -11789,7 +12147,7 @@
|
|
|
11789
12147
|
"type": "array",
|
|
11790
12148
|
"description": "Expected exit codes of the command. If the command's actual exit code isn't in this list, the step fails.",
|
|
11791
12149
|
"items": {
|
|
11792
|
-
"
|
|
12150
|
+
"anyOf": [
|
|
11793
12151
|
{
|
|
11794
12152
|
"type": "integer"
|
|
11795
12153
|
}
|
|
@@ -11863,7 +12221,7 @@
|
|
|
11863
12221
|
"type": "array",
|
|
11864
12222
|
"description": "Arguments for the command.",
|
|
11865
12223
|
"items": {
|
|
11866
|
-
"
|
|
12224
|
+
"anyOf": [
|
|
11867
12225
|
{
|
|
11868
12226
|
"type": "string"
|
|
11869
12227
|
}
|
|
@@ -11880,7 +12238,7 @@
|
|
|
11880
12238
|
"type": "array",
|
|
11881
12239
|
"description": "Expected exit codes of the command. If the command's actual exit code isn't in this list, the step fails.",
|
|
11882
12240
|
"items": {
|
|
11883
|
-
"
|
|
12241
|
+
"anyOf": [
|
|
11884
12242
|
{
|
|
11885
12243
|
"type": "integer"
|
|
11886
12244
|
}
|
|
@@ -12051,7 +12409,7 @@
|
|
|
12051
12409
|
{
|
|
12052
12410
|
"type": "array",
|
|
12053
12411
|
"items": {
|
|
12054
|
-
"
|
|
12412
|
+
"anyOf": [
|
|
12055
12413
|
{
|
|
12056
12414
|
"type": "string"
|
|
12057
12415
|
}
|
|
@@ -12074,7 +12432,7 @@
|
|
|
12074
12432
|
{
|
|
12075
12433
|
"type": "array",
|
|
12076
12434
|
"items": {
|
|
12077
|
-
"
|
|
12435
|
+
"anyOf": [
|
|
12078
12436
|
{
|
|
12079
12437
|
"type": "string"
|
|
12080
12438
|
}
|
|
@@ -12105,7 +12463,7 @@
|
|
|
12105
12463
|
"description": "data-testid attribute of the element to find. Supports exact match or regex pattern using /pattern/ syntax."
|
|
12106
12464
|
},
|
|
12107
12465
|
"elementClass": {
|
|
12108
|
-
"
|
|
12466
|
+
"anyOf": [
|
|
12109
12467
|
{
|
|
12110
12468
|
"type": "string"
|
|
12111
12469
|
},
|
|
@@ -12122,7 +12480,7 @@
|
|
|
12122
12480
|
"type": "object",
|
|
12123
12481
|
"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.",
|
|
12124
12482
|
"additionalProperties": {
|
|
12125
|
-
"
|
|
12483
|
+
"anyOf": [
|
|
12126
12484
|
{
|
|
12127
12485
|
"type": "string"
|
|
12128
12486
|
},
|
|
@@ -12158,7 +12516,7 @@
|
|
|
12158
12516
|
{
|
|
12159
12517
|
"type": "array",
|
|
12160
12518
|
"items": {
|
|
12161
|
-
"
|
|
12519
|
+
"anyOf": [
|
|
12162
12520
|
{
|
|
12163
12521
|
"type": "string"
|
|
12164
12522
|
}
|
|
@@ -12181,7 +12539,7 @@
|
|
|
12181
12539
|
{
|
|
12182
12540
|
"type": "array",
|
|
12183
12541
|
"items": {
|
|
12184
|
-
"
|
|
12542
|
+
"anyOf": [
|
|
12185
12543
|
{
|
|
12186
12544
|
"type": "string"
|
|
12187
12545
|
}
|
|
@@ -12212,7 +12570,7 @@
|
|
|
12212
12570
|
"description": "data-testid attribute of the element to find. Supports exact match or regex pattern using /pattern/ syntax."
|
|
12213
12571
|
},
|
|
12214
12572
|
"elementClass": {
|
|
12215
|
-
"
|
|
12573
|
+
"anyOf": [
|
|
12216
12574
|
{
|
|
12217
12575
|
"type": "string"
|
|
12218
12576
|
},
|
|
@@ -12229,7 +12587,7 @@
|
|
|
12229
12587
|
"type": "object",
|
|
12230
12588
|
"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.",
|
|
12231
12589
|
"additionalProperties": {
|
|
12232
|
-
"
|
|
12590
|
+
"anyOf": [
|
|
12233
12591
|
{
|
|
12234
12592
|
"type": "string"
|
|
12235
12593
|
},
|
|
@@ -12469,7 +12827,7 @@
|
|
|
12469
12827
|
"description": "data-testid attribute of the element to find. Supports exact match or regex pattern using /pattern/ syntax."
|
|
12470
12828
|
},
|
|
12471
12829
|
"elementClass": {
|
|
12472
|
-
"
|
|
12830
|
+
"anyOf": [
|
|
12473
12831
|
{
|
|
12474
12832
|
"type": "string"
|
|
12475
12833
|
},
|
|
@@ -12486,7 +12844,7 @@
|
|
|
12486
12844
|
"type": "object",
|
|
12487
12845
|
"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.",
|
|
12488
12846
|
"additionalProperties": {
|
|
12489
|
-
"
|
|
12847
|
+
"anyOf": [
|
|
12490
12848
|
{
|
|
12491
12849
|
"type": "string"
|
|
12492
12850
|
},
|
|
@@ -12665,7 +13023,7 @@
|
|
|
12665
13023
|
"description": "data-testid attribute of the element to find. Supports exact match or regex pattern using /pattern/ syntax."
|
|
12666
13024
|
},
|
|
12667
13025
|
"elementClass": {
|
|
12668
|
-
"
|
|
13026
|
+
"anyOf": [
|
|
12669
13027
|
{
|
|
12670
13028
|
"type": "string"
|
|
12671
13029
|
},
|
|
@@ -12682,7 +13040,7 @@
|
|
|
12682
13040
|
"type": "object",
|
|
12683
13041
|
"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.",
|
|
12684
13042
|
"additionalProperties": {
|
|
12685
|
-
"
|
|
13043
|
+
"anyOf": [
|
|
12686
13044
|
{
|
|
12687
13045
|
"type": "string"
|
|
12688
13046
|
},
|
|
@@ -12800,7 +13158,7 @@
|
|
|
12800
13158
|
"description": "data-testid attribute of the element to find. Supports exact match or regex pattern using /pattern/ syntax."
|
|
12801
13159
|
},
|
|
12802
13160
|
"elementClass": {
|
|
12803
|
-
"
|
|
13161
|
+
"anyOf": [
|
|
12804
13162
|
{
|
|
12805
13163
|
"type": "string"
|
|
12806
13164
|
},
|
|
@@ -12817,7 +13175,7 @@
|
|
|
12817
13175
|
"type": "object",
|
|
12818
13176
|
"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.",
|
|
12819
13177
|
"additionalProperties": {
|
|
12820
|
-
"
|
|
13178
|
+
"anyOf": [
|
|
12821
13179
|
{
|
|
12822
13180
|
"type": "string"
|
|
12823
13181
|
},
|