doc-detective-common 4.22.0 → 4.23.0
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/index.cjs +274 -74
- package/dist/schemas/schemas.json +274 -74
- package/dist/types/generated/config_v3.d.ts +1 -1
- package/dist/types/generated/context_v3.d.ts +1 -1
- package/dist/types/generated/report_v3.d.ts +1 -1
- package/dist/types/generated/resolvedTests_v3.d.ts +2 -2
- package/dist/types/generated/spec_v3.d.ts +1 -1
- package/dist/types/generated/test_v3.d.ts +1 -1
- package/package.json +1 -1
|
@@ -2507,7 +2507,7 @@
|
|
|
2507
2507
|
]
|
|
2508
2508
|
},
|
|
2509
2509
|
"browsers": {
|
|
2510
|
-
"description": "Browsers to run tests on.",
|
|
2510
|
+
"description": "Browsers to run tests on. On a mobile (`android`/`ios`) platform entry, the browser runs on the managed device: `chrome` on Android, `safari` on iOS (other combinations skip the context), and it fills in automatically when omitted. Device browsers don't take desktop display config: authored `window`/`viewport` dimensions and `headless: false` are rejected on mobile entries (the device owns its display — control it via the device descriptor's `headless`/`deviceType`); `headless: true` matches this schema's default and is ignored.",
|
|
2511
2511
|
"anyOf": [
|
|
2512
2512
|
{
|
|
2513
2513
|
"type": "string",
|
|
@@ -2518,7 +2518,7 @@
|
|
|
2518
2518
|
"safari",
|
|
2519
2519
|
"webkit"
|
|
2520
2520
|
],
|
|
2521
|
-
"$comment": "`safari` is
|
|
2521
|
+
"$comment": "On desktop platforms `safari` is a shortcut for the `webkit` engine. On an `ios` platform entry, `safari` means the real Safari browser on the managed simulator (`webkit` is not supported there). On `android`, `chrome` is the supported browser."
|
|
2522
2522
|
},
|
|
2523
2523
|
{
|
|
2524
2524
|
"type": "object",
|
|
@@ -2537,7 +2537,7 @@
|
|
|
2537
2537
|
"safari",
|
|
2538
2538
|
"webkit"
|
|
2539
2539
|
],
|
|
2540
|
-
"$comment": "`safari` is
|
|
2540
|
+
"$comment": "On desktop platforms `safari` is a shortcut for the `webkit` engine. On an `ios` platform entry, `safari` means the real Safari browser on the managed simulator (`webkit` is not supported there). On `android`, `chrome` is the supported browser."
|
|
2541
2541
|
},
|
|
2542
2542
|
"explicit": {
|
|
2543
2543
|
"type": "boolean",
|
|
@@ -2597,7 +2597,7 @@
|
|
|
2597
2597
|
"safari",
|
|
2598
2598
|
"webkit"
|
|
2599
2599
|
],
|
|
2600
|
-
"$comment": "`safari` is
|
|
2600
|
+
"$comment": "On desktop platforms `safari` is a shortcut for the `webkit` engine. On an `ios` platform entry, `safari` means the real Safari browser on the managed simulator (`webkit` is not supported there). On `android`, `chrome` is the supported browser."
|
|
2601
2601
|
},
|
|
2602
2602
|
{
|
|
2603
2603
|
"type": "object",
|
|
@@ -2616,7 +2616,7 @@
|
|
|
2616
2616
|
"safari",
|
|
2617
2617
|
"webkit"
|
|
2618
2618
|
],
|
|
2619
|
-
"$comment": "`safari` is
|
|
2619
|
+
"$comment": "On desktop platforms `safari` is a shortcut for the `webkit` engine. On an `ios` platform entry, `safari` means the real Safari browser on the managed simulator (`webkit` is not supported there). On `android`, `chrome` is the supported browser."
|
|
2620
2620
|
},
|
|
2621
2621
|
"explicit": {
|
|
2622
2622
|
"type": "boolean",
|
|
@@ -2902,7 +2902,7 @@
|
|
|
2902
2902
|
"safari",
|
|
2903
2903
|
"webkit"
|
|
2904
2904
|
],
|
|
2905
|
-
"$comment": "`safari` is
|
|
2905
|
+
"$comment": "On desktop platforms `safari` is a shortcut for the `webkit` engine. On an `ios` platform entry, `safari` means the real Safari browser on the managed simulator (`webkit` is not supported there). On `android`, `chrome` is the supported browser."
|
|
2906
2906
|
},
|
|
2907
2907
|
"browser": {
|
|
2908
2908
|
"type": "object",
|
|
@@ -2921,7 +2921,7 @@
|
|
|
2921
2921
|
"safari",
|
|
2922
2922
|
"webkit"
|
|
2923
2923
|
],
|
|
2924
|
-
"$comment": "`safari` is
|
|
2924
|
+
"$comment": "On desktop platforms `safari` is a shortcut for the `webkit` engine. On an `ios` platform entry, `safari` means the real Safari browser on the managed simulator (`webkit` is not supported there). On `android`, `chrome` is the supported browser."
|
|
2925
2925
|
},
|
|
2926
2926
|
"explicit": {
|
|
2927
2927
|
"type": "boolean",
|
|
@@ -3061,6 +3061,26 @@
|
|
|
3061
3061
|
}
|
|
3062
3062
|
}
|
|
3063
3063
|
]
|
|
3064
|
+
},
|
|
3065
|
+
{
|
|
3066
|
+
"platforms": "android"
|
|
3067
|
+
},
|
|
3068
|
+
{
|
|
3069
|
+
"platforms": [
|
|
3070
|
+
"windows",
|
|
3071
|
+
"mac",
|
|
3072
|
+
"android",
|
|
3073
|
+
"ios"
|
|
3074
|
+
],
|
|
3075
|
+
"browsers": "chrome"
|
|
3076
|
+
},
|
|
3077
|
+
{
|
|
3078
|
+
"platforms": "ios",
|
|
3079
|
+
"browsers": "safari",
|
|
3080
|
+
"device": {
|
|
3081
|
+
"name": "test-iphone",
|
|
3082
|
+
"deviceType": "phone"
|
|
3083
|
+
}
|
|
3064
3084
|
}
|
|
3065
3085
|
]
|
|
3066
3086
|
}
|
|
@@ -87078,7 +87098,7 @@
|
|
|
87078
87098
|
]
|
|
87079
87099
|
},
|
|
87080
87100
|
"browsers": {
|
|
87081
|
-
"description": "Browsers to run tests on.",
|
|
87101
|
+
"description": "Browsers to run tests on. On a mobile (`android`/`ios`) platform entry, the browser runs on the managed device: `chrome` on Android, `safari` on iOS (other combinations skip the context), and it fills in automatically when omitted. Device browsers don't take desktop display config: authored `window`/`viewport` dimensions and `headless: false` are rejected on mobile entries (the device owns its display — control it via the device descriptor's `headless`/`deviceType`); `headless: true` matches this schema's default and is ignored.",
|
|
87082
87102
|
"anyOf": [
|
|
87083
87103
|
{
|
|
87084
87104
|
"type": "string",
|
|
@@ -87089,7 +87109,7 @@
|
|
|
87089
87109
|
"safari",
|
|
87090
87110
|
"webkit"
|
|
87091
87111
|
],
|
|
87092
|
-
"$comment": "`safari` is
|
|
87112
|
+
"$comment": "On desktop platforms `safari` is a shortcut for the `webkit` engine. On an `ios` platform entry, `safari` means the real Safari browser on the managed simulator (`webkit` is not supported there). On `android`, `chrome` is the supported browser."
|
|
87093
87113
|
},
|
|
87094
87114
|
{
|
|
87095
87115
|
"type": "object",
|
|
@@ -87108,7 +87128,7 @@
|
|
|
87108
87128
|
"safari",
|
|
87109
87129
|
"webkit"
|
|
87110
87130
|
],
|
|
87111
|
-
"$comment": "`safari` is
|
|
87131
|
+
"$comment": "On desktop platforms `safari` is a shortcut for the `webkit` engine. On an `ios` platform entry, `safari` means the real Safari browser on the managed simulator (`webkit` is not supported there). On `android`, `chrome` is the supported browser."
|
|
87112
87132
|
},
|
|
87113
87133
|
"explicit": {
|
|
87114
87134
|
"type": "boolean",
|
|
@@ -87168,7 +87188,7 @@
|
|
|
87168
87188
|
"safari",
|
|
87169
87189
|
"webkit"
|
|
87170
87190
|
],
|
|
87171
|
-
"$comment": "`safari` is
|
|
87191
|
+
"$comment": "On desktop platforms `safari` is a shortcut for the `webkit` engine. On an `ios` platform entry, `safari` means the real Safari browser on the managed simulator (`webkit` is not supported there). On `android`, `chrome` is the supported browser."
|
|
87172
87192
|
},
|
|
87173
87193
|
{
|
|
87174
87194
|
"type": "object",
|
|
@@ -87187,7 +87207,7 @@
|
|
|
87187
87207
|
"safari",
|
|
87188
87208
|
"webkit"
|
|
87189
87209
|
],
|
|
87190
|
-
"$comment": "`safari` is
|
|
87210
|
+
"$comment": "On desktop platforms `safari` is a shortcut for the `webkit` engine. On an `ios` platform entry, `safari` means the real Safari browser on the managed simulator (`webkit` is not supported there). On `android`, `chrome` is the supported browser."
|
|
87191
87211
|
},
|
|
87192
87212
|
"explicit": {
|
|
87193
87213
|
"type": "boolean",
|
|
@@ -87473,7 +87493,7 @@
|
|
|
87473
87493
|
"safari",
|
|
87474
87494
|
"webkit"
|
|
87475
87495
|
],
|
|
87476
|
-
"$comment": "`safari` is
|
|
87496
|
+
"$comment": "On desktop platforms `safari` is a shortcut for the `webkit` engine. On an `ios` platform entry, `safari` means the real Safari browser on the managed simulator (`webkit` is not supported there). On `android`, `chrome` is the supported browser."
|
|
87477
87497
|
},
|
|
87478
87498
|
"browser": {
|
|
87479
87499
|
"type": "object",
|
|
@@ -87492,7 +87512,7 @@
|
|
|
87492
87512
|
"safari",
|
|
87493
87513
|
"webkit"
|
|
87494
87514
|
],
|
|
87495
|
-
"$comment": "`safari` is
|
|
87515
|
+
"$comment": "On desktop platforms `safari` is a shortcut for the `webkit` engine. On an `ios` platform entry, `safari` means the real Safari browser on the managed simulator (`webkit` is not supported there). On `android`, `chrome` is the supported browser."
|
|
87496
87516
|
},
|
|
87497
87517
|
"explicit": {
|
|
87498
87518
|
"type": "boolean",
|
|
@@ -87632,6 +87652,26 @@
|
|
|
87632
87652
|
}
|
|
87633
87653
|
}
|
|
87634
87654
|
]
|
|
87655
|
+
},
|
|
87656
|
+
{
|
|
87657
|
+
"platforms": "android"
|
|
87658
|
+
},
|
|
87659
|
+
{
|
|
87660
|
+
"platforms": [
|
|
87661
|
+
"windows",
|
|
87662
|
+
"mac",
|
|
87663
|
+
"android",
|
|
87664
|
+
"ios"
|
|
87665
|
+
],
|
|
87666
|
+
"browsers": "chrome"
|
|
87667
|
+
},
|
|
87668
|
+
{
|
|
87669
|
+
"platforms": "ios",
|
|
87670
|
+
"browsers": "safari",
|
|
87671
|
+
"device": {
|
|
87672
|
+
"name": "test-iphone",
|
|
87673
|
+
"deviceType": "phone"
|
|
87674
|
+
}
|
|
87635
87675
|
}
|
|
87636
87676
|
]
|
|
87637
87677
|
},
|
|
@@ -99969,7 +100009,7 @@
|
|
|
99969
100009
|
]
|
|
99970
100010
|
},
|
|
99971
100011
|
"browsers": {
|
|
99972
|
-
"description": "Browsers to run tests on.",
|
|
100012
|
+
"description": "Browsers to run tests on. On a mobile (`android`/`ios`) platform entry, the browser runs on the managed device: `chrome` on Android, `safari` on iOS (other combinations skip the context), and it fills in automatically when omitted. Device browsers don't take desktop display config: authored `window`/`viewport` dimensions and `headless: false` are rejected on mobile entries (the device owns its display — control it via the device descriptor's `headless`/`deviceType`); `headless: true` matches this schema's default and is ignored.",
|
|
99973
100013
|
"anyOf": [
|
|
99974
100014
|
{
|
|
99975
100015
|
"type": "string",
|
|
@@ -99980,7 +100020,7 @@
|
|
|
99980
100020
|
"safari",
|
|
99981
100021
|
"webkit"
|
|
99982
100022
|
],
|
|
99983
|
-
"$comment": "`safari` is
|
|
100023
|
+
"$comment": "On desktop platforms `safari` is a shortcut for the `webkit` engine. On an `ios` platform entry, `safari` means the real Safari browser on the managed simulator (`webkit` is not supported there). On `android`, `chrome` is the supported browser."
|
|
99984
100024
|
},
|
|
99985
100025
|
{
|
|
99986
100026
|
"type": "object",
|
|
@@ -99999,7 +100039,7 @@
|
|
|
99999
100039
|
"safari",
|
|
100000
100040
|
"webkit"
|
|
100001
100041
|
],
|
|
100002
|
-
"$comment": "`safari` is
|
|
100042
|
+
"$comment": "On desktop platforms `safari` is a shortcut for the `webkit` engine. On an `ios` platform entry, `safari` means the real Safari browser on the managed simulator (`webkit` is not supported there). On `android`, `chrome` is the supported browser."
|
|
100003
100043
|
},
|
|
100004
100044
|
"explicit": {
|
|
100005
100045
|
"type": "boolean",
|
|
@@ -100059,7 +100099,7 @@
|
|
|
100059
100099
|
"safari",
|
|
100060
100100
|
"webkit"
|
|
100061
100101
|
],
|
|
100062
|
-
"$comment": "`safari` is
|
|
100102
|
+
"$comment": "On desktop platforms `safari` is a shortcut for the `webkit` engine. On an `ios` platform entry, `safari` means the real Safari browser on the managed simulator (`webkit` is not supported there). On `android`, `chrome` is the supported browser."
|
|
100063
100103
|
},
|
|
100064
100104
|
{
|
|
100065
100105
|
"type": "object",
|
|
@@ -100078,7 +100118,7 @@
|
|
|
100078
100118
|
"safari",
|
|
100079
100119
|
"webkit"
|
|
100080
100120
|
],
|
|
100081
|
-
"$comment": "`safari` is
|
|
100121
|
+
"$comment": "On desktop platforms `safari` is a shortcut for the `webkit` engine. On an `ios` platform entry, `safari` means the real Safari browser on the managed simulator (`webkit` is not supported there). On `android`, `chrome` is the supported browser."
|
|
100082
100122
|
},
|
|
100083
100123
|
"explicit": {
|
|
100084
100124
|
"type": "boolean",
|
|
@@ -100364,7 +100404,7 @@
|
|
|
100364
100404
|
"safari",
|
|
100365
100405
|
"webkit"
|
|
100366
100406
|
],
|
|
100367
|
-
"$comment": "`safari` is
|
|
100407
|
+
"$comment": "On desktop platforms `safari` is a shortcut for the `webkit` engine. On an `ios` platform entry, `safari` means the real Safari browser on the managed simulator (`webkit` is not supported there). On `android`, `chrome` is the supported browser."
|
|
100368
100408
|
},
|
|
100369
100409
|
"browser": {
|
|
100370
100410
|
"type": "object",
|
|
@@ -100383,7 +100423,7 @@
|
|
|
100383
100423
|
"safari",
|
|
100384
100424
|
"webkit"
|
|
100385
100425
|
],
|
|
100386
|
-
"$comment": "`safari` is
|
|
100426
|
+
"$comment": "On desktop platforms `safari` is a shortcut for the `webkit` engine. On an `ios` platform entry, `safari` means the real Safari browser on the managed simulator (`webkit` is not supported there). On `android`, `chrome` is the supported browser."
|
|
100387
100427
|
},
|
|
100388
100428
|
"explicit": {
|
|
100389
100429
|
"type": "boolean",
|
|
@@ -100523,6 +100563,26 @@
|
|
|
100523
100563
|
}
|
|
100524
100564
|
}
|
|
100525
100565
|
]
|
|
100566
|
+
},
|
|
100567
|
+
{
|
|
100568
|
+
"platforms": "android"
|
|
100569
|
+
},
|
|
100570
|
+
{
|
|
100571
|
+
"platforms": [
|
|
100572
|
+
"windows",
|
|
100573
|
+
"mac",
|
|
100574
|
+
"android",
|
|
100575
|
+
"ios"
|
|
100576
|
+
],
|
|
100577
|
+
"browsers": "chrome"
|
|
100578
|
+
},
|
|
100579
|
+
{
|
|
100580
|
+
"platforms": "ios",
|
|
100581
|
+
"browsers": "safari",
|
|
100582
|
+
"device": {
|
|
100583
|
+
"name": "test-iphone",
|
|
100584
|
+
"deviceType": "phone"
|
|
100585
|
+
}
|
|
100526
100586
|
}
|
|
100527
100587
|
]
|
|
100528
100588
|
}
|
|
@@ -184602,7 +184662,7 @@
|
|
|
184602
184662
|
]
|
|
184603
184663
|
},
|
|
184604
184664
|
"browsers": {
|
|
184605
|
-
"description": "Browsers to run tests on.",
|
|
184665
|
+
"description": "Browsers to run tests on. On a mobile (`android`/`ios`) platform entry, the browser runs on the managed device: `chrome` on Android, `safari` on iOS (other combinations skip the context), and it fills in automatically when omitted. Device browsers don't take desktop display config: authored `window`/`viewport` dimensions and `headless: false` are rejected on mobile entries (the device owns its display — control it via the device descriptor's `headless`/`deviceType`); `headless: true` matches this schema's default and is ignored.",
|
|
184606
184666
|
"anyOf": [
|
|
184607
184667
|
{
|
|
184608
184668
|
"type": "string",
|
|
@@ -184613,7 +184673,7 @@
|
|
|
184613
184673
|
"safari",
|
|
184614
184674
|
"webkit"
|
|
184615
184675
|
],
|
|
184616
|
-
"$comment": "`safari` is
|
|
184676
|
+
"$comment": "On desktop platforms `safari` is a shortcut for the `webkit` engine. On an `ios` platform entry, `safari` means the real Safari browser on the managed simulator (`webkit` is not supported there). On `android`, `chrome` is the supported browser."
|
|
184617
184677
|
},
|
|
184618
184678
|
{
|
|
184619
184679
|
"type": "object",
|
|
@@ -184632,7 +184692,7 @@
|
|
|
184632
184692
|
"safari",
|
|
184633
184693
|
"webkit"
|
|
184634
184694
|
],
|
|
184635
|
-
"$comment": "`safari` is
|
|
184695
|
+
"$comment": "On desktop platforms `safari` is a shortcut for the `webkit` engine. On an `ios` platform entry, `safari` means the real Safari browser on the managed simulator (`webkit` is not supported there). On `android`, `chrome` is the supported browser."
|
|
184636
184696
|
},
|
|
184637
184697
|
"explicit": {
|
|
184638
184698
|
"type": "boolean",
|
|
@@ -184692,7 +184752,7 @@
|
|
|
184692
184752
|
"safari",
|
|
184693
184753
|
"webkit"
|
|
184694
184754
|
],
|
|
184695
|
-
"$comment": "`safari` is
|
|
184755
|
+
"$comment": "On desktop platforms `safari` is a shortcut for the `webkit` engine. On an `ios` platform entry, `safari` means the real Safari browser on the managed simulator (`webkit` is not supported there). On `android`, `chrome` is the supported browser."
|
|
184696
184756
|
},
|
|
184697
184757
|
{
|
|
184698
184758
|
"type": "object",
|
|
@@ -184711,7 +184771,7 @@
|
|
|
184711
184771
|
"safari",
|
|
184712
184772
|
"webkit"
|
|
184713
184773
|
],
|
|
184714
|
-
"$comment": "`safari` is
|
|
184774
|
+
"$comment": "On desktop platforms `safari` is a shortcut for the `webkit` engine. On an `ios` platform entry, `safari` means the real Safari browser on the managed simulator (`webkit` is not supported there). On `android`, `chrome` is the supported browser."
|
|
184715
184775
|
},
|
|
184716
184776
|
"explicit": {
|
|
184717
184777
|
"type": "boolean",
|
|
@@ -184997,7 +185057,7 @@
|
|
|
184997
185057
|
"safari",
|
|
184998
185058
|
"webkit"
|
|
184999
185059
|
],
|
|
185000
|
-
"$comment": "`safari` is
|
|
185060
|
+
"$comment": "On desktop platforms `safari` is a shortcut for the `webkit` engine. On an `ios` platform entry, `safari` means the real Safari browser on the managed simulator (`webkit` is not supported there). On `android`, `chrome` is the supported browser."
|
|
185001
185061
|
},
|
|
185002
185062
|
"browser": {
|
|
185003
185063
|
"type": "object",
|
|
@@ -185016,7 +185076,7 @@
|
|
|
185016
185076
|
"safari",
|
|
185017
185077
|
"webkit"
|
|
185018
185078
|
],
|
|
185019
|
-
"$comment": "`safari` is
|
|
185079
|
+
"$comment": "On desktop platforms `safari` is a shortcut for the `webkit` engine. On an `ios` platform entry, `safari` means the real Safari browser on the managed simulator (`webkit` is not supported there). On `android`, `chrome` is the supported browser."
|
|
185020
185080
|
},
|
|
185021
185081
|
"explicit": {
|
|
185022
185082
|
"type": "boolean",
|
|
@@ -185156,6 +185216,26 @@
|
|
|
185156
185216
|
}
|
|
185157
185217
|
}
|
|
185158
185218
|
]
|
|
185219
|
+
},
|
|
185220
|
+
{
|
|
185221
|
+
"platforms": "android"
|
|
185222
|
+
},
|
|
185223
|
+
{
|
|
185224
|
+
"platforms": [
|
|
185225
|
+
"windows",
|
|
185226
|
+
"mac",
|
|
185227
|
+
"android",
|
|
185228
|
+
"ios"
|
|
185229
|
+
],
|
|
185230
|
+
"browsers": "chrome"
|
|
185231
|
+
},
|
|
185232
|
+
{
|
|
185233
|
+
"platforms": "ios",
|
|
185234
|
+
"browsers": "safari",
|
|
185235
|
+
"device": {
|
|
185236
|
+
"name": "test-iphone",
|
|
185237
|
+
"deviceType": "phone"
|
|
185238
|
+
}
|
|
185159
185239
|
}
|
|
185160
185240
|
]
|
|
185161
185241
|
}
|
|
@@ -185444,7 +185524,7 @@
|
|
|
185444
185524
|
]
|
|
185445
185525
|
},
|
|
185446
185526
|
"browsers": {
|
|
185447
|
-
"description": "Browsers to run tests on.",
|
|
185527
|
+
"description": "Browsers to run tests on. On a mobile (`android`/`ios`) platform entry, the browser runs on the managed device: `chrome` on Android, `safari` on iOS (other combinations skip the context), and it fills in automatically when omitted. Device browsers don't take desktop display config: authored `window`/`viewport` dimensions and `headless: false` are rejected on mobile entries (the device owns its display — control it via the device descriptor's `headless`/`deviceType`); `headless: true` matches this schema's default and is ignored.",
|
|
185448
185528
|
"anyOf": [
|
|
185449
185529
|
{
|
|
185450
185530
|
"type": "string",
|
|
@@ -185455,7 +185535,7 @@
|
|
|
185455
185535
|
"safari",
|
|
185456
185536
|
"webkit"
|
|
185457
185537
|
],
|
|
185458
|
-
"$comment": "`safari` is
|
|
185538
|
+
"$comment": "On desktop platforms `safari` is a shortcut for the `webkit` engine. On an `ios` platform entry, `safari` means the real Safari browser on the managed simulator (`webkit` is not supported there). On `android`, `chrome` is the supported browser."
|
|
185459
185539
|
},
|
|
185460
185540
|
{
|
|
185461
185541
|
"type": "object",
|
|
@@ -185474,7 +185554,7 @@
|
|
|
185474
185554
|
"safari",
|
|
185475
185555
|
"webkit"
|
|
185476
185556
|
],
|
|
185477
|
-
"$comment": "`safari` is
|
|
185557
|
+
"$comment": "On desktop platforms `safari` is a shortcut for the `webkit` engine. On an `ios` platform entry, `safari` means the real Safari browser on the managed simulator (`webkit` is not supported there). On `android`, `chrome` is the supported browser."
|
|
185478
185558
|
},
|
|
185479
185559
|
"explicit": {
|
|
185480
185560
|
"type": "boolean",
|
|
@@ -185534,7 +185614,7 @@
|
|
|
185534
185614
|
"safari",
|
|
185535
185615
|
"webkit"
|
|
185536
185616
|
],
|
|
185537
|
-
"$comment": "`safari` is
|
|
185617
|
+
"$comment": "On desktop platforms `safari` is a shortcut for the `webkit` engine. On an `ios` platform entry, `safari` means the real Safari browser on the managed simulator (`webkit` is not supported there). On `android`, `chrome` is the supported browser."
|
|
185538
185618
|
},
|
|
185539
185619
|
{
|
|
185540
185620
|
"type": "object",
|
|
@@ -185553,7 +185633,7 @@
|
|
|
185553
185633
|
"safari",
|
|
185554
185634
|
"webkit"
|
|
185555
185635
|
],
|
|
185556
|
-
"$comment": "`safari` is
|
|
185636
|
+
"$comment": "On desktop platforms `safari` is a shortcut for the `webkit` engine. On an `ios` platform entry, `safari` means the real Safari browser on the managed simulator (`webkit` is not supported there). On `android`, `chrome` is the supported browser."
|
|
185557
185637
|
},
|
|
185558
185638
|
"explicit": {
|
|
185559
185639
|
"type": "boolean",
|
|
@@ -185839,7 +185919,7 @@
|
|
|
185839
185919
|
"safari",
|
|
185840
185920
|
"webkit"
|
|
185841
185921
|
],
|
|
185842
|
-
"$comment": "`safari` is
|
|
185922
|
+
"$comment": "On desktop platforms `safari` is a shortcut for the `webkit` engine. On an `ios` platform entry, `safari` means the real Safari browser on the managed simulator (`webkit` is not supported there). On `android`, `chrome` is the supported browser."
|
|
185843
185923
|
},
|
|
185844
185924
|
"browser": {
|
|
185845
185925
|
"type": "object",
|
|
@@ -185858,7 +185938,7 @@
|
|
|
185858
185938
|
"safari",
|
|
185859
185939
|
"webkit"
|
|
185860
185940
|
],
|
|
185861
|
-
"$comment": "`safari` is
|
|
185941
|
+
"$comment": "On desktop platforms `safari` is a shortcut for the `webkit` engine. On an `ios` platform entry, `safari` means the real Safari browser on the managed simulator (`webkit` is not supported there). On `android`, `chrome` is the supported browser."
|
|
185862
185942
|
},
|
|
185863
185943
|
"explicit": {
|
|
185864
185944
|
"type": "boolean",
|
|
@@ -185998,6 +186078,26 @@
|
|
|
185998
186078
|
}
|
|
185999
186079
|
}
|
|
186000
186080
|
]
|
|
186081
|
+
},
|
|
186082
|
+
{
|
|
186083
|
+
"platforms": "android"
|
|
186084
|
+
},
|
|
186085
|
+
{
|
|
186086
|
+
"platforms": [
|
|
186087
|
+
"windows",
|
|
186088
|
+
"mac",
|
|
186089
|
+
"android",
|
|
186090
|
+
"ios"
|
|
186091
|
+
],
|
|
186092
|
+
"browsers": "chrome"
|
|
186093
|
+
},
|
|
186094
|
+
{
|
|
186095
|
+
"platforms": "ios",
|
|
186096
|
+
"browsers": "safari",
|
|
186097
|
+
"device": {
|
|
186098
|
+
"name": "test-iphone",
|
|
186099
|
+
"deviceType": "phone"
|
|
186100
|
+
}
|
|
186001
186101
|
}
|
|
186002
186102
|
]
|
|
186003
186103
|
}
|
|
@@ -228159,7 +228259,7 @@
|
|
|
228159
228259
|
"safari",
|
|
228160
228260
|
"webkit"
|
|
228161
228261
|
],
|
|
228162
|
-
"$comment": "`safari` is
|
|
228262
|
+
"$comment": "On desktop platforms `safari` is a shortcut for the `webkit` engine. On an `ios` platform entry, `safari` means the real Safari browser on the managed simulator (`webkit` is not supported there). On `android`, `chrome` is the supported browser."
|
|
228163
228263
|
},
|
|
228164
228264
|
"explicit": {
|
|
228165
228265
|
"type": "boolean",
|
|
@@ -270503,7 +270603,7 @@
|
|
|
270503
270603
|
]
|
|
270504
270604
|
},
|
|
270505
270605
|
"browsers": {
|
|
270506
|
-
"description": "Browsers to run tests on.",
|
|
270606
|
+
"description": "Browsers to run tests on. On a mobile (`android`/`ios`) platform entry, the browser runs on the managed device: `chrome` on Android, `safari` on iOS (other combinations skip the context), and it fills in automatically when omitted. Device browsers don't take desktop display config: authored `window`/`viewport` dimensions and `headless: false` are rejected on mobile entries (the device owns its display — control it via the device descriptor's `headless`/`deviceType`); `headless: true` matches this schema's default and is ignored.",
|
|
270507
270607
|
"anyOf": [
|
|
270508
270608
|
{
|
|
270509
270609
|
"type": "string",
|
|
@@ -270514,7 +270614,7 @@
|
|
|
270514
270614
|
"safari",
|
|
270515
270615
|
"webkit"
|
|
270516
270616
|
],
|
|
270517
|
-
"$comment": "`safari` is
|
|
270617
|
+
"$comment": "On desktop platforms `safari` is a shortcut for the `webkit` engine. On an `ios` platform entry, `safari` means the real Safari browser on the managed simulator (`webkit` is not supported there). On `android`, `chrome` is the supported browser."
|
|
270518
270618
|
},
|
|
270519
270619
|
{
|
|
270520
270620
|
"type": "object",
|
|
@@ -270533,7 +270633,7 @@
|
|
|
270533
270633
|
"safari",
|
|
270534
270634
|
"webkit"
|
|
270535
270635
|
],
|
|
270536
|
-
"$comment": "`safari` is
|
|
270636
|
+
"$comment": "On desktop platforms `safari` is a shortcut for the `webkit` engine. On an `ios` platform entry, `safari` means the real Safari browser on the managed simulator (`webkit` is not supported there). On `android`, `chrome` is the supported browser."
|
|
270537
270637
|
},
|
|
270538
270638
|
"explicit": {
|
|
270539
270639
|
"type": "boolean",
|
|
@@ -270593,7 +270693,7 @@
|
|
|
270593
270693
|
"safari",
|
|
270594
270694
|
"webkit"
|
|
270595
270695
|
],
|
|
270596
|
-
"$comment": "`safari` is
|
|
270696
|
+
"$comment": "On desktop platforms `safari` is a shortcut for the `webkit` engine. On an `ios` platform entry, `safari` means the real Safari browser on the managed simulator (`webkit` is not supported there). On `android`, `chrome` is the supported browser."
|
|
270597
270697
|
},
|
|
270598
270698
|
{
|
|
270599
270699
|
"type": "object",
|
|
@@ -270612,7 +270712,7 @@
|
|
|
270612
270712
|
"safari",
|
|
270613
270713
|
"webkit"
|
|
270614
270714
|
],
|
|
270615
|
-
"$comment": "`safari` is
|
|
270715
|
+
"$comment": "On desktop platforms `safari` is a shortcut for the `webkit` engine. On an `ios` platform entry, `safari` means the real Safari browser on the managed simulator (`webkit` is not supported there). On `android`, `chrome` is the supported browser."
|
|
270616
270716
|
},
|
|
270617
270717
|
"explicit": {
|
|
270618
270718
|
"type": "boolean",
|
|
@@ -270898,7 +270998,7 @@
|
|
|
270898
270998
|
"safari",
|
|
270899
270999
|
"webkit"
|
|
270900
271000
|
],
|
|
270901
|
-
"$comment": "`safari` is
|
|
271001
|
+
"$comment": "On desktop platforms `safari` is a shortcut for the `webkit` engine. On an `ios` platform entry, `safari` means the real Safari browser on the managed simulator (`webkit` is not supported there). On `android`, `chrome` is the supported browser."
|
|
270902
271002
|
},
|
|
270903
271003
|
"browser": {
|
|
270904
271004
|
"type": "object",
|
|
@@ -270917,7 +271017,7 @@
|
|
|
270917
271017
|
"safari",
|
|
270918
271018
|
"webkit"
|
|
270919
271019
|
],
|
|
270920
|
-
"$comment": "`safari` is
|
|
271020
|
+
"$comment": "On desktop platforms `safari` is a shortcut for the `webkit` engine. On an `ios` platform entry, `safari` means the real Safari browser on the managed simulator (`webkit` is not supported there). On `android`, `chrome` is the supported browser."
|
|
270921
271021
|
},
|
|
270922
271022
|
"explicit": {
|
|
270923
271023
|
"type": "boolean",
|
|
@@ -271057,6 +271157,26 @@
|
|
|
271057
271157
|
}
|
|
271058
271158
|
}
|
|
271059
271159
|
]
|
|
271160
|
+
},
|
|
271161
|
+
{
|
|
271162
|
+
"platforms": "android"
|
|
271163
|
+
},
|
|
271164
|
+
{
|
|
271165
|
+
"platforms": [
|
|
271166
|
+
"windows",
|
|
271167
|
+
"mac",
|
|
271168
|
+
"android",
|
|
271169
|
+
"ios"
|
|
271170
|
+
],
|
|
271171
|
+
"browsers": "chrome"
|
|
271172
|
+
},
|
|
271173
|
+
{
|
|
271174
|
+
"platforms": "ios",
|
|
271175
|
+
"browsers": "safari",
|
|
271176
|
+
"device": {
|
|
271177
|
+
"name": "test-iphone",
|
|
271178
|
+
"deviceType": "phone"
|
|
271179
|
+
}
|
|
271060
271180
|
}
|
|
271061
271181
|
]
|
|
271062
271182
|
}
|
|
@@ -271345,7 +271465,7 @@
|
|
|
271345
271465
|
]
|
|
271346
271466
|
},
|
|
271347
271467
|
"browsers": {
|
|
271348
|
-
"description": "Browsers to run tests on.",
|
|
271468
|
+
"description": "Browsers to run tests on. On a mobile (`android`/`ios`) platform entry, the browser runs on the managed device: `chrome` on Android, `safari` on iOS (other combinations skip the context), and it fills in automatically when omitted. Device browsers don't take desktop display config: authored `window`/`viewport` dimensions and `headless: false` are rejected on mobile entries (the device owns its display — control it via the device descriptor's `headless`/`deviceType`); `headless: true` matches this schema's default and is ignored.",
|
|
271349
271469
|
"anyOf": [
|
|
271350
271470
|
{
|
|
271351
271471
|
"type": "string",
|
|
@@ -271356,7 +271476,7 @@
|
|
|
271356
271476
|
"safari",
|
|
271357
271477
|
"webkit"
|
|
271358
271478
|
],
|
|
271359
|
-
"$comment": "`safari` is
|
|
271479
|
+
"$comment": "On desktop platforms `safari` is a shortcut for the `webkit` engine. On an `ios` platform entry, `safari` means the real Safari browser on the managed simulator (`webkit` is not supported there). On `android`, `chrome` is the supported browser."
|
|
271360
271480
|
},
|
|
271361
271481
|
{
|
|
271362
271482
|
"type": "object",
|
|
@@ -271375,7 +271495,7 @@
|
|
|
271375
271495
|
"safari",
|
|
271376
271496
|
"webkit"
|
|
271377
271497
|
],
|
|
271378
|
-
"$comment": "`safari` is
|
|
271498
|
+
"$comment": "On desktop platforms `safari` is a shortcut for the `webkit` engine. On an `ios` platform entry, `safari` means the real Safari browser on the managed simulator (`webkit` is not supported there). On `android`, `chrome` is the supported browser."
|
|
271379
271499
|
},
|
|
271380
271500
|
"explicit": {
|
|
271381
271501
|
"type": "boolean",
|
|
@@ -271435,7 +271555,7 @@
|
|
|
271435
271555
|
"safari",
|
|
271436
271556
|
"webkit"
|
|
271437
271557
|
],
|
|
271438
|
-
"$comment": "`safari` is
|
|
271558
|
+
"$comment": "On desktop platforms `safari` is a shortcut for the `webkit` engine. On an `ios` platform entry, `safari` means the real Safari browser on the managed simulator (`webkit` is not supported there). On `android`, `chrome` is the supported browser."
|
|
271439
271559
|
},
|
|
271440
271560
|
{
|
|
271441
271561
|
"type": "object",
|
|
@@ -271454,7 +271574,7 @@
|
|
|
271454
271574
|
"safari",
|
|
271455
271575
|
"webkit"
|
|
271456
271576
|
],
|
|
271457
|
-
"$comment": "`safari` is
|
|
271577
|
+
"$comment": "On desktop platforms `safari` is a shortcut for the `webkit` engine. On an `ios` platform entry, `safari` means the real Safari browser on the managed simulator (`webkit` is not supported there). On `android`, `chrome` is the supported browser."
|
|
271458
271578
|
},
|
|
271459
271579
|
"explicit": {
|
|
271460
271580
|
"type": "boolean",
|
|
@@ -271740,7 +271860,7 @@
|
|
|
271740
271860
|
"safari",
|
|
271741
271861
|
"webkit"
|
|
271742
271862
|
],
|
|
271743
|
-
"$comment": "`safari` is
|
|
271863
|
+
"$comment": "On desktop platforms `safari` is a shortcut for the `webkit` engine. On an `ios` platform entry, `safari` means the real Safari browser on the managed simulator (`webkit` is not supported there). On `android`, `chrome` is the supported browser."
|
|
271744
271864
|
},
|
|
271745
271865
|
"browser": {
|
|
271746
271866
|
"type": "object",
|
|
@@ -271759,7 +271879,7 @@
|
|
|
271759
271879
|
"safari",
|
|
271760
271880
|
"webkit"
|
|
271761
271881
|
],
|
|
271762
|
-
"$comment": "`safari` is
|
|
271882
|
+
"$comment": "On desktop platforms `safari` is a shortcut for the `webkit` engine. On an `ios` platform entry, `safari` means the real Safari browser on the managed simulator (`webkit` is not supported there). On `android`, `chrome` is the supported browser."
|
|
271763
271883
|
},
|
|
271764
271884
|
"explicit": {
|
|
271765
271885
|
"type": "boolean",
|
|
@@ -271899,6 +272019,26 @@
|
|
|
271899
272019
|
}
|
|
271900
272020
|
}
|
|
271901
272021
|
]
|
|
272022
|
+
},
|
|
272023
|
+
{
|
|
272024
|
+
"platforms": "android"
|
|
272025
|
+
},
|
|
272026
|
+
{
|
|
272027
|
+
"platforms": [
|
|
272028
|
+
"windows",
|
|
272029
|
+
"mac",
|
|
272030
|
+
"android",
|
|
272031
|
+
"ios"
|
|
272032
|
+
],
|
|
272033
|
+
"browsers": "chrome"
|
|
272034
|
+
},
|
|
272035
|
+
{
|
|
272036
|
+
"platforms": "ios",
|
|
272037
|
+
"browsers": "safari",
|
|
272038
|
+
"device": {
|
|
272039
|
+
"name": "test-iphone",
|
|
272040
|
+
"deviceType": "phone"
|
|
272041
|
+
}
|
|
271902
272042
|
}
|
|
271903
272043
|
]
|
|
271904
272044
|
}
|
|
@@ -314060,7 +314200,7 @@
|
|
|
314060
314200
|
"safari",
|
|
314061
314201
|
"webkit"
|
|
314062
314202
|
],
|
|
314063
|
-
"$comment": "`safari` is
|
|
314203
|
+
"$comment": "On desktop platforms `safari` is a shortcut for the `webkit` engine. On an `ios` platform entry, `safari` means the real Safari browser on the managed simulator (`webkit` is not supported there). On `android`, `chrome` is the supported browser."
|
|
314064
314204
|
},
|
|
314065
314205
|
"explicit": {
|
|
314066
314206
|
"type": "boolean",
|
|
@@ -359617,7 +359757,7 @@
|
|
|
359617
359757
|
]
|
|
359618
359758
|
},
|
|
359619
359759
|
"browsers": {
|
|
359620
|
-
"description": "Browsers to run tests on.",
|
|
359760
|
+
"description": "Browsers to run tests on. On a mobile (`android`/`ios`) platform entry, the browser runs on the managed device: `chrome` on Android, `safari` on iOS (other combinations skip the context), and it fills in automatically when omitted. Device browsers don't take desktop display config: authored `window`/`viewport` dimensions and `headless: false` are rejected on mobile entries (the device owns its display — control it via the device descriptor's `headless`/`deviceType`); `headless: true` matches this schema's default and is ignored.",
|
|
359621
359761
|
"anyOf": [
|
|
359622
359762
|
{
|
|
359623
359763
|
"type": "string",
|
|
@@ -359628,7 +359768,7 @@
|
|
|
359628
359768
|
"safari",
|
|
359629
359769
|
"webkit"
|
|
359630
359770
|
],
|
|
359631
|
-
"$comment": "`safari` is
|
|
359771
|
+
"$comment": "On desktop platforms `safari` is a shortcut for the `webkit` engine. On an `ios` platform entry, `safari` means the real Safari browser on the managed simulator (`webkit` is not supported there). On `android`, `chrome` is the supported browser."
|
|
359632
359772
|
},
|
|
359633
359773
|
{
|
|
359634
359774
|
"type": "object",
|
|
@@ -359647,7 +359787,7 @@
|
|
|
359647
359787
|
"safari",
|
|
359648
359788
|
"webkit"
|
|
359649
359789
|
],
|
|
359650
|
-
"$comment": "`safari` is
|
|
359790
|
+
"$comment": "On desktop platforms `safari` is a shortcut for the `webkit` engine. On an `ios` platform entry, `safari` means the real Safari browser on the managed simulator (`webkit` is not supported there). On `android`, `chrome` is the supported browser."
|
|
359651
359791
|
},
|
|
359652
359792
|
"explicit": {
|
|
359653
359793
|
"type": "boolean",
|
|
@@ -359707,7 +359847,7 @@
|
|
|
359707
359847
|
"safari",
|
|
359708
359848
|
"webkit"
|
|
359709
359849
|
],
|
|
359710
|
-
"$comment": "`safari` is
|
|
359850
|
+
"$comment": "On desktop platforms `safari` is a shortcut for the `webkit` engine. On an `ios` platform entry, `safari` means the real Safari browser on the managed simulator (`webkit` is not supported there). On `android`, `chrome` is the supported browser."
|
|
359711
359851
|
},
|
|
359712
359852
|
{
|
|
359713
359853
|
"type": "object",
|
|
@@ -359726,7 +359866,7 @@
|
|
|
359726
359866
|
"safari",
|
|
359727
359867
|
"webkit"
|
|
359728
359868
|
],
|
|
359729
|
-
"$comment": "`safari` is
|
|
359869
|
+
"$comment": "On desktop platforms `safari` is a shortcut for the `webkit` engine. On an `ios` platform entry, `safari` means the real Safari browser on the managed simulator (`webkit` is not supported there). On `android`, `chrome` is the supported browser."
|
|
359730
359870
|
},
|
|
359731
359871
|
"explicit": {
|
|
359732
359872
|
"type": "boolean",
|
|
@@ -360012,7 +360152,7 @@
|
|
|
360012
360152
|
"safari",
|
|
360013
360153
|
"webkit"
|
|
360014
360154
|
],
|
|
360015
|
-
"$comment": "`safari` is
|
|
360155
|
+
"$comment": "On desktop platforms `safari` is a shortcut for the `webkit` engine. On an `ios` platform entry, `safari` means the real Safari browser on the managed simulator (`webkit` is not supported there). On `android`, `chrome` is the supported browser."
|
|
360016
360156
|
},
|
|
360017
360157
|
"browser": {
|
|
360018
360158
|
"type": "object",
|
|
@@ -360031,7 +360171,7 @@
|
|
|
360031
360171
|
"safari",
|
|
360032
360172
|
"webkit"
|
|
360033
360173
|
],
|
|
360034
|
-
"$comment": "`safari` is
|
|
360174
|
+
"$comment": "On desktop platforms `safari` is a shortcut for the `webkit` engine. On an `ios` platform entry, `safari` means the real Safari browser on the managed simulator (`webkit` is not supported there). On `android`, `chrome` is the supported browser."
|
|
360035
360175
|
},
|
|
360036
360176
|
"explicit": {
|
|
360037
360177
|
"type": "boolean",
|
|
@@ -360171,6 +360311,26 @@
|
|
|
360171
360311
|
}
|
|
360172
360312
|
}
|
|
360173
360313
|
]
|
|
360314
|
+
},
|
|
360315
|
+
{
|
|
360316
|
+
"platforms": "android"
|
|
360317
|
+
},
|
|
360318
|
+
{
|
|
360319
|
+
"platforms": [
|
|
360320
|
+
"windows",
|
|
360321
|
+
"mac",
|
|
360322
|
+
"android",
|
|
360323
|
+
"ios"
|
|
360324
|
+
],
|
|
360325
|
+
"browsers": "chrome"
|
|
360326
|
+
},
|
|
360327
|
+
{
|
|
360328
|
+
"platforms": "ios",
|
|
360329
|
+
"browsers": "safari",
|
|
360330
|
+
"device": {
|
|
360331
|
+
"name": "test-iphone",
|
|
360332
|
+
"deviceType": "phone"
|
|
360333
|
+
}
|
|
360174
360334
|
}
|
|
360175
360335
|
]
|
|
360176
360336
|
}
|
|
@@ -360459,7 +360619,7 @@
|
|
|
360459
360619
|
]
|
|
360460
360620
|
},
|
|
360461
360621
|
"browsers": {
|
|
360462
|
-
"description": "Browsers to run tests on.",
|
|
360622
|
+
"description": "Browsers to run tests on. On a mobile (`android`/`ios`) platform entry, the browser runs on the managed device: `chrome` on Android, `safari` on iOS (other combinations skip the context), and it fills in automatically when omitted. Device browsers don't take desktop display config: authored `window`/`viewport` dimensions and `headless: false` are rejected on mobile entries (the device owns its display — control it via the device descriptor's `headless`/`deviceType`); `headless: true` matches this schema's default and is ignored.",
|
|
360463
360623
|
"anyOf": [
|
|
360464
360624
|
{
|
|
360465
360625
|
"type": "string",
|
|
@@ -360470,7 +360630,7 @@
|
|
|
360470
360630
|
"safari",
|
|
360471
360631
|
"webkit"
|
|
360472
360632
|
],
|
|
360473
|
-
"$comment": "`safari` is
|
|
360633
|
+
"$comment": "On desktop platforms `safari` is a shortcut for the `webkit` engine. On an `ios` platform entry, `safari` means the real Safari browser on the managed simulator (`webkit` is not supported there). On `android`, `chrome` is the supported browser."
|
|
360474
360634
|
},
|
|
360475
360635
|
{
|
|
360476
360636
|
"type": "object",
|
|
@@ -360489,7 +360649,7 @@
|
|
|
360489
360649
|
"safari",
|
|
360490
360650
|
"webkit"
|
|
360491
360651
|
],
|
|
360492
|
-
"$comment": "`safari` is
|
|
360652
|
+
"$comment": "On desktop platforms `safari` is a shortcut for the `webkit` engine. On an `ios` platform entry, `safari` means the real Safari browser on the managed simulator (`webkit` is not supported there). On `android`, `chrome` is the supported browser."
|
|
360493
360653
|
},
|
|
360494
360654
|
"explicit": {
|
|
360495
360655
|
"type": "boolean",
|
|
@@ -360549,7 +360709,7 @@
|
|
|
360549
360709
|
"safari",
|
|
360550
360710
|
"webkit"
|
|
360551
360711
|
],
|
|
360552
|
-
"$comment": "`safari` is
|
|
360712
|
+
"$comment": "On desktop platforms `safari` is a shortcut for the `webkit` engine. On an `ios` platform entry, `safari` means the real Safari browser on the managed simulator (`webkit` is not supported there). On `android`, `chrome` is the supported browser."
|
|
360553
360713
|
},
|
|
360554
360714
|
{
|
|
360555
360715
|
"type": "object",
|
|
@@ -360568,7 +360728,7 @@
|
|
|
360568
360728
|
"safari",
|
|
360569
360729
|
"webkit"
|
|
360570
360730
|
],
|
|
360571
|
-
"$comment": "`safari` is
|
|
360731
|
+
"$comment": "On desktop platforms `safari` is a shortcut for the `webkit` engine. On an `ios` platform entry, `safari` means the real Safari browser on the managed simulator (`webkit` is not supported there). On `android`, `chrome` is the supported browser."
|
|
360572
360732
|
},
|
|
360573
360733
|
"explicit": {
|
|
360574
360734
|
"type": "boolean",
|
|
@@ -360854,7 +361014,7 @@
|
|
|
360854
361014
|
"safari",
|
|
360855
361015
|
"webkit"
|
|
360856
361016
|
],
|
|
360857
|
-
"$comment": "`safari` is
|
|
361017
|
+
"$comment": "On desktop platforms `safari` is a shortcut for the `webkit` engine. On an `ios` platform entry, `safari` means the real Safari browser on the managed simulator (`webkit` is not supported there). On `android`, `chrome` is the supported browser."
|
|
360858
361018
|
},
|
|
360859
361019
|
"browser": {
|
|
360860
361020
|
"type": "object",
|
|
@@ -360873,7 +361033,7 @@
|
|
|
360873
361033
|
"safari",
|
|
360874
361034
|
"webkit"
|
|
360875
361035
|
],
|
|
360876
|
-
"$comment": "`safari` is
|
|
361036
|
+
"$comment": "On desktop platforms `safari` is a shortcut for the `webkit` engine. On an `ios` platform entry, `safari` means the real Safari browser on the managed simulator (`webkit` is not supported there). On `android`, `chrome` is the supported browser."
|
|
360877
361037
|
},
|
|
360878
361038
|
"explicit": {
|
|
360879
361039
|
"type": "boolean",
|
|
@@ -361013,6 +361173,26 @@
|
|
|
361013
361173
|
}
|
|
361014
361174
|
}
|
|
361015
361175
|
]
|
|
361176
|
+
},
|
|
361177
|
+
{
|
|
361178
|
+
"platforms": "android"
|
|
361179
|
+
},
|
|
361180
|
+
{
|
|
361181
|
+
"platforms": [
|
|
361182
|
+
"windows",
|
|
361183
|
+
"mac",
|
|
361184
|
+
"android",
|
|
361185
|
+
"ios"
|
|
361186
|
+
],
|
|
361187
|
+
"browsers": "chrome"
|
|
361188
|
+
},
|
|
361189
|
+
{
|
|
361190
|
+
"platforms": "ios",
|
|
361191
|
+
"browsers": "safari",
|
|
361192
|
+
"device": {
|
|
361193
|
+
"name": "test-iphone",
|
|
361194
|
+
"deviceType": "phone"
|
|
361195
|
+
}
|
|
361016
361196
|
}
|
|
361017
361197
|
]
|
|
361018
361198
|
}
|
|
@@ -403174,7 +403354,7 @@
|
|
|
403174
403354
|
"safari",
|
|
403175
403355
|
"webkit"
|
|
403176
403356
|
],
|
|
403177
|
-
"$comment": "`safari` is
|
|
403357
|
+
"$comment": "On desktop platforms `safari` is a shortcut for the `webkit` engine. On an `ios` platform entry, `safari` means the real Safari browser on the managed simulator (`webkit` is not supported there). On `android`, `chrome` is the supported browser."
|
|
403178
403358
|
},
|
|
403179
403359
|
"explicit": {
|
|
403180
403360
|
"type": "boolean",
|
|
@@ -487764,7 +487944,7 @@
|
|
|
487764
487944
|
]
|
|
487765
487945
|
},
|
|
487766
487946
|
"browsers": {
|
|
487767
|
-
"description": "Browsers to run tests on.",
|
|
487947
|
+
"description": "Browsers to run tests on. On a mobile (`android`/`ios`) platform entry, the browser runs on the managed device: `chrome` on Android, `safari` on iOS (other combinations skip the context), and it fills in automatically when omitted. Device browsers don't take desktop display config: authored `window`/`viewport` dimensions and `headless: false` are rejected on mobile entries (the device owns its display — control it via the device descriptor's `headless`/`deviceType`); `headless: true` matches this schema's default and is ignored.",
|
|
487768
487948
|
"anyOf": [
|
|
487769
487949
|
{
|
|
487770
487950
|
"type": "string",
|
|
@@ -487775,7 +487955,7 @@
|
|
|
487775
487955
|
"safari",
|
|
487776
487956
|
"webkit"
|
|
487777
487957
|
],
|
|
487778
|
-
"$comment": "`safari` is
|
|
487958
|
+
"$comment": "On desktop platforms `safari` is a shortcut for the `webkit` engine. On an `ios` platform entry, `safari` means the real Safari browser on the managed simulator (`webkit` is not supported there). On `android`, `chrome` is the supported browser."
|
|
487779
487959
|
},
|
|
487780
487960
|
{
|
|
487781
487961
|
"type": "object",
|
|
@@ -487794,7 +487974,7 @@
|
|
|
487794
487974
|
"safari",
|
|
487795
487975
|
"webkit"
|
|
487796
487976
|
],
|
|
487797
|
-
"$comment": "`safari` is
|
|
487977
|
+
"$comment": "On desktop platforms `safari` is a shortcut for the `webkit` engine. On an `ios` platform entry, `safari` means the real Safari browser on the managed simulator (`webkit` is not supported there). On `android`, `chrome` is the supported browser."
|
|
487798
487978
|
},
|
|
487799
487979
|
"explicit": {
|
|
487800
487980
|
"type": "boolean",
|
|
@@ -487854,7 +488034,7 @@
|
|
|
487854
488034
|
"safari",
|
|
487855
488035
|
"webkit"
|
|
487856
488036
|
],
|
|
487857
|
-
"$comment": "`safari` is
|
|
488037
|
+
"$comment": "On desktop platforms `safari` is a shortcut for the `webkit` engine. On an `ios` platform entry, `safari` means the real Safari browser on the managed simulator (`webkit` is not supported there). On `android`, `chrome` is the supported browser."
|
|
487858
488038
|
},
|
|
487859
488039
|
{
|
|
487860
488040
|
"type": "object",
|
|
@@ -487873,7 +488053,7 @@
|
|
|
487873
488053
|
"safari",
|
|
487874
488054
|
"webkit"
|
|
487875
488055
|
],
|
|
487876
|
-
"$comment": "`safari` is
|
|
488056
|
+
"$comment": "On desktop platforms `safari` is a shortcut for the `webkit` engine. On an `ios` platform entry, `safari` means the real Safari browser on the managed simulator (`webkit` is not supported there). On `android`, `chrome` is the supported browser."
|
|
487877
488057
|
},
|
|
487878
488058
|
"explicit": {
|
|
487879
488059
|
"type": "boolean",
|
|
@@ -488159,7 +488339,7 @@
|
|
|
488159
488339
|
"safari",
|
|
488160
488340
|
"webkit"
|
|
488161
488341
|
],
|
|
488162
|
-
"$comment": "`safari` is
|
|
488342
|
+
"$comment": "On desktop platforms `safari` is a shortcut for the `webkit` engine. On an `ios` platform entry, `safari` means the real Safari browser on the managed simulator (`webkit` is not supported there). On `android`, `chrome` is the supported browser."
|
|
488163
488343
|
},
|
|
488164
488344
|
"browser": {
|
|
488165
488345
|
"type": "object",
|
|
@@ -488178,7 +488358,7 @@
|
|
|
488178
488358
|
"safari",
|
|
488179
488359
|
"webkit"
|
|
488180
488360
|
],
|
|
488181
|
-
"$comment": "`safari` is
|
|
488361
|
+
"$comment": "On desktop platforms `safari` is a shortcut for the `webkit` engine. On an `ios` platform entry, `safari` means the real Safari browser on the managed simulator (`webkit` is not supported there). On `android`, `chrome` is the supported browser."
|
|
488182
488362
|
},
|
|
488183
488363
|
"explicit": {
|
|
488184
488364
|
"type": "boolean",
|
|
@@ -488318,6 +488498,26 @@
|
|
|
488318
488498
|
}
|
|
488319
488499
|
}
|
|
488320
488500
|
]
|
|
488501
|
+
},
|
|
488502
|
+
{
|
|
488503
|
+
"platforms": "android"
|
|
488504
|
+
},
|
|
488505
|
+
{
|
|
488506
|
+
"platforms": [
|
|
488507
|
+
"windows",
|
|
488508
|
+
"mac",
|
|
488509
|
+
"android",
|
|
488510
|
+
"ios"
|
|
488511
|
+
],
|
|
488512
|
+
"browsers": "chrome"
|
|
488513
|
+
},
|
|
488514
|
+
{
|
|
488515
|
+
"platforms": "ios",
|
|
488516
|
+
"browsers": "safari",
|
|
488517
|
+
"device": {
|
|
488518
|
+
"name": "test-iphone",
|
|
488519
|
+
"deviceType": "phone"
|
|
488520
|
+
}
|
|
488321
488521
|
}
|
|
488322
488522
|
]
|
|
488323
488523
|
}
|
|
@@ -530479,7 +530679,7 @@
|
|
|
530479
530679
|
"safari",
|
|
530480
530680
|
"webkit"
|
|
530481
530681
|
],
|
|
530482
|
-
"$comment": "`safari` is
|
|
530682
|
+
"$comment": "On desktop platforms `safari` is a shortcut for the `webkit` engine. On an `ios` platform entry, `safari` means the real Safari browser on the managed simulator (`webkit` is not supported there). On `android`, `chrome` is the supported browser."
|
|
530483
530683
|
},
|
|
530484
530684
|
"explicit": {
|
|
530485
530685
|
"type": "boolean",
|