doc-detective-common 3.4.1-dev.4 → 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/config_v3.schema.json +334 -2
- package/dist/schemas/goTo_v3.schema.json +167 -1
- package/dist/schemas/report_v3.schema.json +334 -2
- package/dist/schemas/resolvedTests_v3.schema.json +668 -4
- package/dist/schemas/spec_v3.schema.json +334 -2
- package/dist/schemas/step_v3.schema.json +167 -1
- package/dist/schemas/test_v3.schema.json +334 -2
- package/package.json +2 -2
- package/src/schemas/output_schemas/config_v3.schema.json +334 -2
- package/src/schemas/output_schemas/goTo_v3.schema.json +167 -1
- package/src/schemas/output_schemas/report_v3.schema.json +334 -2
- package/src/schemas/output_schemas/resolvedTests_v3.schema.json +668 -4
- package/src/schemas/output_schemas/spec_v3.schema.json +334 -2
- package/src/schemas/output_schemas/step_v3.schema.json +167 -1
- package/src/schemas/output_schemas/test_v3.schema.json +334 -2
- package/src/schemas/schemas.json +2338 -14
- package/src/schemas/src_schemas/goTo_v3.schema.json +109 -14
- package/src/schemas/build/goTo_v3.schema.json +0 -63
|
@@ -2960,6 +2960,72 @@
|
|
|
2960
2960
|
"transform": [
|
|
2961
2961
|
"trim"
|
|
2962
2962
|
]
|
|
2963
|
+
},
|
|
2964
|
+
"timeout": {
|
|
2965
|
+
"type": "integer",
|
|
2966
|
+
"description": "Maximum time in milliseconds to wait for the page to be ready. If exceeded, the goTo action fails.",
|
|
2967
|
+
"default": 30000,
|
|
2968
|
+
"minimum": 0
|
|
2969
|
+
},
|
|
2970
|
+
"waitUntil": {
|
|
2971
|
+
"type": "object",
|
|
2972
|
+
"description": "Configuration for waiting conditions after navigation.",
|
|
2973
|
+
"additionalProperties": false,
|
|
2974
|
+
"properties": {
|
|
2975
|
+
"networkIdleTime": {
|
|
2976
|
+
"description": "Wait for network activity to be idle (no new requests) for this duration in milliseconds. Set to `null` to skip this check.",
|
|
2977
|
+
"anyOf": [
|
|
2978
|
+
{
|
|
2979
|
+
"type": "integer",
|
|
2980
|
+
"minimum": 0
|
|
2981
|
+
},
|
|
2982
|
+
{
|
|
2983
|
+
"type": "null"
|
|
2984
|
+
}
|
|
2985
|
+
],
|
|
2986
|
+
"default": 500
|
|
2987
|
+
},
|
|
2988
|
+
"domIdleTime": {
|
|
2989
|
+
"description": "Wait for DOM mutations to stop for this duration in milliseconds. Set to `null` to skip this check.",
|
|
2990
|
+
"anyOf": [
|
|
2991
|
+
{
|
|
2992
|
+
"type": "integer",
|
|
2993
|
+
"minimum": 0
|
|
2994
|
+
},
|
|
2995
|
+
{
|
|
2996
|
+
"type": "null"
|
|
2997
|
+
}
|
|
2998
|
+
],
|
|
2999
|
+
"default": 1000
|
|
3000
|
+
},
|
|
3001
|
+
"find": {
|
|
3002
|
+
"type": "object",
|
|
3003
|
+
"description": "Wait for a specific element to be present in the DOM. At least one of selector or elementText must be specified.",
|
|
3004
|
+
"additionalProperties": false,
|
|
3005
|
+
"anyOf": [
|
|
3006
|
+
{
|
|
3007
|
+
"required": [
|
|
3008
|
+
"selector"
|
|
3009
|
+
]
|
|
3010
|
+
},
|
|
3011
|
+
{
|
|
3012
|
+
"required": [
|
|
3013
|
+
"elementText"
|
|
3014
|
+
]
|
|
3015
|
+
}
|
|
3016
|
+
],
|
|
3017
|
+
"properties": {
|
|
3018
|
+
"selector": {
|
|
3019
|
+
"type": "string",
|
|
3020
|
+
"description": "CSS selector for the element to wait for."
|
|
3021
|
+
},
|
|
3022
|
+
"elementText": {
|
|
3023
|
+
"type": "string",
|
|
3024
|
+
"description": "Text content the element must contain."
|
|
3025
|
+
}
|
|
3026
|
+
}
|
|
3027
|
+
}
|
|
3028
|
+
}
|
|
2963
3029
|
}
|
|
2964
3030
|
},
|
|
2965
3031
|
"title": "Go to URL (detailed)"
|
|
@@ -2998,6 +3064,72 @@
|
|
|
2998
3064
|
"transform": [
|
|
2999
3065
|
"trim"
|
|
3000
3066
|
]
|
|
3067
|
+
},
|
|
3068
|
+
"timeout": {
|
|
3069
|
+
"type": "integer",
|
|
3070
|
+
"description": "Maximum time in milliseconds to wait for the page to be ready. If exceeded, the goTo action fails.",
|
|
3071
|
+
"default": 30000,
|
|
3072
|
+
"minimum": 0
|
|
3073
|
+
},
|
|
3074
|
+
"waitUntil": {
|
|
3075
|
+
"type": "object",
|
|
3076
|
+
"description": "Configuration for waiting conditions after navigation.",
|
|
3077
|
+
"additionalProperties": false,
|
|
3078
|
+
"properties": {
|
|
3079
|
+
"networkIdleTime": {
|
|
3080
|
+
"description": "Wait for network activity to be idle (no new requests) for this duration in milliseconds. Set to `null` to skip this check.",
|
|
3081
|
+
"anyOf": [
|
|
3082
|
+
{
|
|
3083
|
+
"type": "integer",
|
|
3084
|
+
"minimum": 0
|
|
3085
|
+
},
|
|
3086
|
+
{
|
|
3087
|
+
"type": "null"
|
|
3088
|
+
}
|
|
3089
|
+
],
|
|
3090
|
+
"default": 500
|
|
3091
|
+
},
|
|
3092
|
+
"domIdleTime": {
|
|
3093
|
+
"description": "Wait for DOM mutations to stop for this duration in milliseconds. Set to `null` to skip this check.",
|
|
3094
|
+
"anyOf": [
|
|
3095
|
+
{
|
|
3096
|
+
"type": "integer",
|
|
3097
|
+
"minimum": 0
|
|
3098
|
+
},
|
|
3099
|
+
{
|
|
3100
|
+
"type": "null"
|
|
3101
|
+
}
|
|
3102
|
+
],
|
|
3103
|
+
"default": 1000
|
|
3104
|
+
},
|
|
3105
|
+
"find": {
|
|
3106
|
+
"type": "object",
|
|
3107
|
+
"description": "Wait for a specific element to be present in the DOM. At least one of selector or elementText must be specified.",
|
|
3108
|
+
"additionalProperties": false,
|
|
3109
|
+
"anyOf": [
|
|
3110
|
+
{
|
|
3111
|
+
"required": [
|
|
3112
|
+
"selector"
|
|
3113
|
+
]
|
|
3114
|
+
},
|
|
3115
|
+
{
|
|
3116
|
+
"required": [
|
|
3117
|
+
"elementText"
|
|
3118
|
+
]
|
|
3119
|
+
}
|
|
3120
|
+
],
|
|
3121
|
+
"properties": {
|
|
3122
|
+
"selector": {
|
|
3123
|
+
"type": "string",
|
|
3124
|
+
"description": "CSS selector for the element to wait for."
|
|
3125
|
+
},
|
|
3126
|
+
"elementText": {
|
|
3127
|
+
"type": "string",
|
|
3128
|
+
"description": "Text content the element must contain."
|
|
3129
|
+
}
|
|
3130
|
+
}
|
|
3131
|
+
}
|
|
3132
|
+
}
|
|
3001
3133
|
}
|
|
3002
3134
|
},
|
|
3003
3135
|
"title": "Go to URL (detailed)"
|
|
@@ -3012,7 +3144,41 @@
|
|
|
3012
3144
|
},
|
|
3013
3145
|
{
|
|
3014
3146
|
"url": "/search",
|
|
3015
|
-
"origin": "www.google.com"
|
|
3147
|
+
"origin": "https://www.google.com"
|
|
3148
|
+
},
|
|
3149
|
+
{
|
|
3150
|
+
"url": "https://www.example.com",
|
|
3151
|
+
"waitUntil": {
|
|
3152
|
+
"networkIdleTime": 500
|
|
3153
|
+
}
|
|
3154
|
+
},
|
|
3155
|
+
{
|
|
3156
|
+
"url": "https://www.example.com/dashboard",
|
|
3157
|
+
"waitUntil": {
|
|
3158
|
+
"find": {
|
|
3159
|
+
"selector": "[data-testid='dashboard-loaded']"
|
|
3160
|
+
}
|
|
3161
|
+
}
|
|
3162
|
+
},
|
|
3163
|
+
{
|
|
3164
|
+
"url": "https://www.example.com/app",
|
|
3165
|
+
"timeout": 60000,
|
|
3166
|
+
"waitUntil": {
|
|
3167
|
+
"networkIdleTime": 500,
|
|
3168
|
+
"domIdleTime": 1000,
|
|
3169
|
+
"find": {
|
|
3170
|
+
"selector": ".main-content",
|
|
3171
|
+
"elementText": "Dashboard"
|
|
3172
|
+
}
|
|
3173
|
+
}
|
|
3174
|
+
},
|
|
3175
|
+
{
|
|
3176
|
+
"url": "https://www.example.com/status",
|
|
3177
|
+
"waitUntil": {
|
|
3178
|
+
"find": {
|
|
3179
|
+
"elementText": "System operational"
|
|
3180
|
+
}
|
|
3181
|
+
}
|
|
3016
3182
|
}
|
|
3017
3183
|
]
|
|
3018
3184
|
}
|
|
@@ -10268,6 +10434,72 @@
|
|
|
10268
10434
|
"transform": [
|
|
10269
10435
|
"trim"
|
|
10270
10436
|
]
|
|
10437
|
+
},
|
|
10438
|
+
"timeout": {
|
|
10439
|
+
"type": "integer",
|
|
10440
|
+
"description": "Maximum time in milliseconds to wait for the page to be ready. If exceeded, the goTo action fails.",
|
|
10441
|
+
"default": 30000,
|
|
10442
|
+
"minimum": 0
|
|
10443
|
+
},
|
|
10444
|
+
"waitUntil": {
|
|
10445
|
+
"type": "object",
|
|
10446
|
+
"description": "Configuration for waiting conditions after navigation.",
|
|
10447
|
+
"additionalProperties": false,
|
|
10448
|
+
"properties": {
|
|
10449
|
+
"networkIdleTime": {
|
|
10450
|
+
"description": "Wait for network activity to be idle (no new requests) for this duration in milliseconds. Set to `null` to skip this check.",
|
|
10451
|
+
"anyOf": [
|
|
10452
|
+
{
|
|
10453
|
+
"type": "integer",
|
|
10454
|
+
"minimum": 0
|
|
10455
|
+
},
|
|
10456
|
+
{
|
|
10457
|
+
"type": "null"
|
|
10458
|
+
}
|
|
10459
|
+
],
|
|
10460
|
+
"default": 500
|
|
10461
|
+
},
|
|
10462
|
+
"domIdleTime": {
|
|
10463
|
+
"description": "Wait for DOM mutations to stop for this duration in milliseconds. Set to `null` to skip this check.",
|
|
10464
|
+
"anyOf": [
|
|
10465
|
+
{
|
|
10466
|
+
"type": "integer",
|
|
10467
|
+
"minimum": 0
|
|
10468
|
+
},
|
|
10469
|
+
{
|
|
10470
|
+
"type": "null"
|
|
10471
|
+
}
|
|
10472
|
+
],
|
|
10473
|
+
"default": 1000
|
|
10474
|
+
},
|
|
10475
|
+
"find": {
|
|
10476
|
+
"type": "object",
|
|
10477
|
+
"description": "Wait for a specific element to be present in the DOM. At least one of selector or elementText must be specified.",
|
|
10478
|
+
"additionalProperties": false,
|
|
10479
|
+
"anyOf": [
|
|
10480
|
+
{
|
|
10481
|
+
"required": [
|
|
10482
|
+
"selector"
|
|
10483
|
+
]
|
|
10484
|
+
},
|
|
10485
|
+
{
|
|
10486
|
+
"required": [
|
|
10487
|
+
"elementText"
|
|
10488
|
+
]
|
|
10489
|
+
}
|
|
10490
|
+
],
|
|
10491
|
+
"properties": {
|
|
10492
|
+
"selector": {
|
|
10493
|
+
"type": "string",
|
|
10494
|
+
"description": "CSS selector for the element to wait for."
|
|
10495
|
+
},
|
|
10496
|
+
"elementText": {
|
|
10497
|
+
"type": "string",
|
|
10498
|
+
"description": "Text content the element must contain."
|
|
10499
|
+
}
|
|
10500
|
+
}
|
|
10501
|
+
}
|
|
10502
|
+
}
|
|
10271
10503
|
}
|
|
10272
10504
|
},
|
|
10273
10505
|
"title": "Go to URL (detailed)"
|
|
@@ -10306,6 +10538,72 @@
|
|
|
10306
10538
|
"transform": [
|
|
10307
10539
|
"trim"
|
|
10308
10540
|
]
|
|
10541
|
+
},
|
|
10542
|
+
"timeout": {
|
|
10543
|
+
"type": "integer",
|
|
10544
|
+
"description": "Maximum time in milliseconds to wait for the page to be ready. If exceeded, the goTo action fails.",
|
|
10545
|
+
"default": 30000,
|
|
10546
|
+
"minimum": 0
|
|
10547
|
+
},
|
|
10548
|
+
"waitUntil": {
|
|
10549
|
+
"type": "object",
|
|
10550
|
+
"description": "Configuration for waiting conditions after navigation.",
|
|
10551
|
+
"additionalProperties": false,
|
|
10552
|
+
"properties": {
|
|
10553
|
+
"networkIdleTime": {
|
|
10554
|
+
"description": "Wait for network activity to be idle (no new requests) for this duration in milliseconds. Set to `null` to skip this check.",
|
|
10555
|
+
"anyOf": [
|
|
10556
|
+
{
|
|
10557
|
+
"type": "integer",
|
|
10558
|
+
"minimum": 0
|
|
10559
|
+
},
|
|
10560
|
+
{
|
|
10561
|
+
"type": "null"
|
|
10562
|
+
}
|
|
10563
|
+
],
|
|
10564
|
+
"default": 500
|
|
10565
|
+
},
|
|
10566
|
+
"domIdleTime": {
|
|
10567
|
+
"description": "Wait for DOM mutations to stop for this duration in milliseconds. Set to `null` to skip this check.",
|
|
10568
|
+
"anyOf": [
|
|
10569
|
+
{
|
|
10570
|
+
"type": "integer",
|
|
10571
|
+
"minimum": 0
|
|
10572
|
+
},
|
|
10573
|
+
{
|
|
10574
|
+
"type": "null"
|
|
10575
|
+
}
|
|
10576
|
+
],
|
|
10577
|
+
"default": 1000
|
|
10578
|
+
},
|
|
10579
|
+
"find": {
|
|
10580
|
+
"type": "object",
|
|
10581
|
+
"description": "Wait for a specific element to be present in the DOM. At least one of selector or elementText must be specified.",
|
|
10582
|
+
"additionalProperties": false,
|
|
10583
|
+
"anyOf": [
|
|
10584
|
+
{
|
|
10585
|
+
"required": [
|
|
10586
|
+
"selector"
|
|
10587
|
+
]
|
|
10588
|
+
},
|
|
10589
|
+
{
|
|
10590
|
+
"required": [
|
|
10591
|
+
"elementText"
|
|
10592
|
+
]
|
|
10593
|
+
}
|
|
10594
|
+
],
|
|
10595
|
+
"properties": {
|
|
10596
|
+
"selector": {
|
|
10597
|
+
"type": "string",
|
|
10598
|
+
"description": "CSS selector for the element to wait for."
|
|
10599
|
+
},
|
|
10600
|
+
"elementText": {
|
|
10601
|
+
"type": "string",
|
|
10602
|
+
"description": "Text content the element must contain."
|
|
10603
|
+
}
|
|
10604
|
+
}
|
|
10605
|
+
}
|
|
10606
|
+
}
|
|
10309
10607
|
}
|
|
10310
10608
|
},
|
|
10311
10609
|
"title": "Go to URL (detailed)"
|
|
@@ -10320,7 +10618,41 @@
|
|
|
10320
10618
|
},
|
|
10321
10619
|
{
|
|
10322
10620
|
"url": "/search",
|
|
10323
|
-
"origin": "www.google.com"
|
|
10621
|
+
"origin": "https://www.google.com"
|
|
10622
|
+
},
|
|
10623
|
+
{
|
|
10624
|
+
"url": "https://www.example.com",
|
|
10625
|
+
"waitUntil": {
|
|
10626
|
+
"networkIdleTime": 500
|
|
10627
|
+
}
|
|
10628
|
+
},
|
|
10629
|
+
{
|
|
10630
|
+
"url": "https://www.example.com/dashboard",
|
|
10631
|
+
"waitUntil": {
|
|
10632
|
+
"find": {
|
|
10633
|
+
"selector": "[data-testid='dashboard-loaded']"
|
|
10634
|
+
}
|
|
10635
|
+
}
|
|
10636
|
+
},
|
|
10637
|
+
{
|
|
10638
|
+
"url": "https://www.example.com/app",
|
|
10639
|
+
"timeout": 60000,
|
|
10640
|
+
"waitUntil": {
|
|
10641
|
+
"networkIdleTime": 500,
|
|
10642
|
+
"domIdleTime": 1000,
|
|
10643
|
+
"find": {
|
|
10644
|
+
"selector": ".main-content",
|
|
10645
|
+
"elementText": "Dashboard"
|
|
10646
|
+
}
|
|
10647
|
+
}
|
|
10648
|
+
},
|
|
10649
|
+
{
|
|
10650
|
+
"url": "https://www.example.com/status",
|
|
10651
|
+
"waitUntil": {
|
|
10652
|
+
"find": {
|
|
10653
|
+
"elementText": "System operational"
|
|
10654
|
+
}
|
|
10655
|
+
}
|
|
10324
10656
|
}
|
|
10325
10657
|
]
|
|
10326
10658
|
}
|
|
@@ -33,6 +33,72 @@
|
|
|
33
33
|
"transform": [
|
|
34
34
|
"trim"
|
|
35
35
|
]
|
|
36
|
+
},
|
|
37
|
+
"timeout": {
|
|
38
|
+
"type": "integer",
|
|
39
|
+
"description": "Maximum time in milliseconds to wait for the page to be ready. If exceeded, the goTo action fails.",
|
|
40
|
+
"default": 30000,
|
|
41
|
+
"minimum": 0
|
|
42
|
+
},
|
|
43
|
+
"waitUntil": {
|
|
44
|
+
"type": "object",
|
|
45
|
+
"description": "Configuration for waiting conditions after navigation.",
|
|
46
|
+
"additionalProperties": false,
|
|
47
|
+
"properties": {
|
|
48
|
+
"networkIdleTime": {
|
|
49
|
+
"description": "Wait for network activity to be idle (no new requests) for this duration in milliseconds. Set to `null` to skip this check.",
|
|
50
|
+
"anyOf": [
|
|
51
|
+
{
|
|
52
|
+
"type": "integer",
|
|
53
|
+
"minimum": 0
|
|
54
|
+
},
|
|
55
|
+
{
|
|
56
|
+
"type": "null"
|
|
57
|
+
}
|
|
58
|
+
],
|
|
59
|
+
"default": 500
|
|
60
|
+
},
|
|
61
|
+
"domIdleTime": {
|
|
62
|
+
"description": "Wait for DOM mutations to stop for this duration in milliseconds. Set to `null` to skip this check.",
|
|
63
|
+
"anyOf": [
|
|
64
|
+
{
|
|
65
|
+
"type": "integer",
|
|
66
|
+
"minimum": 0
|
|
67
|
+
},
|
|
68
|
+
{
|
|
69
|
+
"type": "null"
|
|
70
|
+
}
|
|
71
|
+
],
|
|
72
|
+
"default": 1000
|
|
73
|
+
},
|
|
74
|
+
"find": {
|
|
75
|
+
"type": "object",
|
|
76
|
+
"description": "Wait for a specific element to be present in the DOM. At least one of selector or elementText must be specified.",
|
|
77
|
+
"additionalProperties": false,
|
|
78
|
+
"anyOf": [
|
|
79
|
+
{
|
|
80
|
+
"required": [
|
|
81
|
+
"selector"
|
|
82
|
+
]
|
|
83
|
+
},
|
|
84
|
+
{
|
|
85
|
+
"required": [
|
|
86
|
+
"elementText"
|
|
87
|
+
]
|
|
88
|
+
}
|
|
89
|
+
],
|
|
90
|
+
"properties": {
|
|
91
|
+
"selector": {
|
|
92
|
+
"type": "string",
|
|
93
|
+
"description": "CSS selector for the element to wait for."
|
|
94
|
+
},
|
|
95
|
+
"elementText": {
|
|
96
|
+
"type": "string",
|
|
97
|
+
"description": "Text content the element must contain."
|
|
98
|
+
}
|
|
99
|
+
}
|
|
100
|
+
}
|
|
101
|
+
}
|
|
36
102
|
}
|
|
37
103
|
},
|
|
38
104
|
"title": "Go to URL (detailed)"
|
|
@@ -71,6 +137,72 @@
|
|
|
71
137
|
"transform": [
|
|
72
138
|
"trim"
|
|
73
139
|
]
|
|
140
|
+
},
|
|
141
|
+
"timeout": {
|
|
142
|
+
"type": "integer",
|
|
143
|
+
"description": "Maximum time in milliseconds to wait for the page to be ready. If exceeded, the goTo action fails.",
|
|
144
|
+
"default": 30000,
|
|
145
|
+
"minimum": 0
|
|
146
|
+
},
|
|
147
|
+
"waitUntil": {
|
|
148
|
+
"type": "object",
|
|
149
|
+
"description": "Configuration for waiting conditions after navigation.",
|
|
150
|
+
"additionalProperties": false,
|
|
151
|
+
"properties": {
|
|
152
|
+
"networkIdleTime": {
|
|
153
|
+
"description": "Wait for network activity to be idle (no new requests) for this duration in milliseconds. Set to `null` to skip this check.",
|
|
154
|
+
"anyOf": [
|
|
155
|
+
{
|
|
156
|
+
"type": "integer",
|
|
157
|
+
"minimum": 0
|
|
158
|
+
},
|
|
159
|
+
{
|
|
160
|
+
"type": "null"
|
|
161
|
+
}
|
|
162
|
+
],
|
|
163
|
+
"default": 500
|
|
164
|
+
},
|
|
165
|
+
"domIdleTime": {
|
|
166
|
+
"description": "Wait for DOM mutations to stop for this duration in milliseconds. Set to `null` to skip this check.",
|
|
167
|
+
"anyOf": [
|
|
168
|
+
{
|
|
169
|
+
"type": "integer",
|
|
170
|
+
"minimum": 0
|
|
171
|
+
},
|
|
172
|
+
{
|
|
173
|
+
"type": "null"
|
|
174
|
+
}
|
|
175
|
+
],
|
|
176
|
+
"default": 1000
|
|
177
|
+
},
|
|
178
|
+
"find": {
|
|
179
|
+
"type": "object",
|
|
180
|
+
"description": "Wait for a specific element to be present in the DOM. At least one of selector or elementText must be specified.",
|
|
181
|
+
"additionalProperties": false,
|
|
182
|
+
"anyOf": [
|
|
183
|
+
{
|
|
184
|
+
"required": [
|
|
185
|
+
"selector"
|
|
186
|
+
]
|
|
187
|
+
},
|
|
188
|
+
{
|
|
189
|
+
"required": [
|
|
190
|
+
"elementText"
|
|
191
|
+
]
|
|
192
|
+
}
|
|
193
|
+
],
|
|
194
|
+
"properties": {
|
|
195
|
+
"selector": {
|
|
196
|
+
"type": "string",
|
|
197
|
+
"description": "CSS selector for the element to wait for."
|
|
198
|
+
},
|
|
199
|
+
"elementText": {
|
|
200
|
+
"type": "string",
|
|
201
|
+
"description": "Text content the element must contain."
|
|
202
|
+
}
|
|
203
|
+
}
|
|
204
|
+
}
|
|
205
|
+
}
|
|
74
206
|
}
|
|
75
207
|
},
|
|
76
208
|
"title": "Go to URL (detailed)"
|
|
@@ -85,7 +217,41 @@
|
|
|
85
217
|
},
|
|
86
218
|
{
|
|
87
219
|
"url": "/search",
|
|
88
|
-
"origin": "www.google.com"
|
|
220
|
+
"origin": "https://www.google.com"
|
|
221
|
+
},
|
|
222
|
+
{
|
|
223
|
+
"url": "https://www.example.com",
|
|
224
|
+
"waitUntil": {
|
|
225
|
+
"networkIdleTime": 500
|
|
226
|
+
}
|
|
227
|
+
},
|
|
228
|
+
{
|
|
229
|
+
"url": "https://www.example.com/dashboard",
|
|
230
|
+
"waitUntil": {
|
|
231
|
+
"find": {
|
|
232
|
+
"selector": "[data-testid='dashboard-loaded']"
|
|
233
|
+
}
|
|
234
|
+
}
|
|
235
|
+
},
|
|
236
|
+
{
|
|
237
|
+
"url": "https://www.example.com/app",
|
|
238
|
+
"timeout": 60000,
|
|
239
|
+
"waitUntil": {
|
|
240
|
+
"networkIdleTime": 500,
|
|
241
|
+
"domIdleTime": 1000,
|
|
242
|
+
"find": {
|
|
243
|
+
"selector": ".main-content",
|
|
244
|
+
"elementText": "Dashboard"
|
|
245
|
+
}
|
|
246
|
+
}
|
|
247
|
+
},
|
|
248
|
+
{
|
|
249
|
+
"url": "https://www.example.com/status",
|
|
250
|
+
"waitUntil": {
|
|
251
|
+
"find": {
|
|
252
|
+
"elementText": "System operational"
|
|
253
|
+
}
|
|
254
|
+
}
|
|
89
255
|
}
|
|
90
256
|
]
|
|
91
257
|
}
|