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
package/dist/index.cjs
CHANGED
|
@@ -2548,7 +2548,7 @@ var schemas_default = {
|
|
|
2548
2548
|
]
|
|
2549
2549
|
},
|
|
2550
2550
|
browsers: {
|
|
2551
|
-
description: "Browsers to run tests on.",
|
|
2551
|
+
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 \u2014 control it via the device descriptor's `headless`/`deviceType`); `headless: true` matches this schema's default and is ignored.",
|
|
2552
2552
|
anyOf: [
|
|
2553
2553
|
{
|
|
2554
2554
|
type: "string",
|
|
@@ -2559,7 +2559,7 @@ var schemas_default = {
|
|
|
2559
2559
|
"safari",
|
|
2560
2560
|
"webkit"
|
|
2561
2561
|
],
|
|
2562
|
-
$comment: "`safari` is
|
|
2562
|
+
$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."
|
|
2563
2563
|
},
|
|
2564
2564
|
{
|
|
2565
2565
|
type: "object",
|
|
@@ -2578,7 +2578,7 @@ var schemas_default = {
|
|
|
2578
2578
|
"safari",
|
|
2579
2579
|
"webkit"
|
|
2580
2580
|
],
|
|
2581
|
-
$comment: "`safari` is
|
|
2581
|
+
$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."
|
|
2582
2582
|
},
|
|
2583
2583
|
explicit: {
|
|
2584
2584
|
type: "boolean",
|
|
@@ -2638,7 +2638,7 @@ var schemas_default = {
|
|
|
2638
2638
|
"safari",
|
|
2639
2639
|
"webkit"
|
|
2640
2640
|
],
|
|
2641
|
-
$comment: "`safari` is
|
|
2641
|
+
$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."
|
|
2642
2642
|
},
|
|
2643
2643
|
{
|
|
2644
2644
|
type: "object",
|
|
@@ -2657,7 +2657,7 @@ var schemas_default = {
|
|
|
2657
2657
|
"safari",
|
|
2658
2658
|
"webkit"
|
|
2659
2659
|
],
|
|
2660
|
-
$comment: "`safari` is
|
|
2660
|
+
$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."
|
|
2661
2661
|
},
|
|
2662
2662
|
explicit: {
|
|
2663
2663
|
type: "boolean",
|
|
@@ -2943,7 +2943,7 @@ var schemas_default = {
|
|
|
2943
2943
|
"safari",
|
|
2944
2944
|
"webkit"
|
|
2945
2945
|
],
|
|
2946
|
-
$comment: "`safari` is
|
|
2946
|
+
$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."
|
|
2947
2947
|
},
|
|
2948
2948
|
browser: {
|
|
2949
2949
|
type: "object",
|
|
@@ -2962,7 +2962,7 @@ var schemas_default = {
|
|
|
2962
2962
|
"safari",
|
|
2963
2963
|
"webkit"
|
|
2964
2964
|
],
|
|
2965
|
-
$comment: "`safari` is
|
|
2965
|
+
$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."
|
|
2966
2966
|
},
|
|
2967
2967
|
explicit: {
|
|
2968
2968
|
type: "boolean",
|
|
@@ -3102,6 +3102,26 @@ var schemas_default = {
|
|
|
3102
3102
|
}
|
|
3103
3103
|
}
|
|
3104
3104
|
]
|
|
3105
|
+
},
|
|
3106
|
+
{
|
|
3107
|
+
platforms: "android"
|
|
3108
|
+
},
|
|
3109
|
+
{
|
|
3110
|
+
platforms: [
|
|
3111
|
+
"windows",
|
|
3112
|
+
"mac",
|
|
3113
|
+
"android",
|
|
3114
|
+
"ios"
|
|
3115
|
+
],
|
|
3116
|
+
browsers: "chrome"
|
|
3117
|
+
},
|
|
3118
|
+
{
|
|
3119
|
+
platforms: "ios",
|
|
3120
|
+
browsers: "safari",
|
|
3121
|
+
device: {
|
|
3122
|
+
name: "test-iphone",
|
|
3123
|
+
deviceType: "phone"
|
|
3124
|
+
}
|
|
3105
3125
|
}
|
|
3106
3126
|
]
|
|
3107
3127
|
}
|
|
@@ -87119,7 +87139,7 @@ var schemas_default = {
|
|
|
87119
87139
|
]
|
|
87120
87140
|
},
|
|
87121
87141
|
browsers: {
|
|
87122
|
-
description: "Browsers to run tests on.",
|
|
87142
|
+
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 \u2014 control it via the device descriptor's `headless`/`deviceType`); `headless: true` matches this schema's default and is ignored.",
|
|
87123
87143
|
anyOf: [
|
|
87124
87144
|
{
|
|
87125
87145
|
type: "string",
|
|
@@ -87130,7 +87150,7 @@ var schemas_default = {
|
|
|
87130
87150
|
"safari",
|
|
87131
87151
|
"webkit"
|
|
87132
87152
|
],
|
|
87133
|
-
$comment: "`safari` is
|
|
87153
|
+
$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."
|
|
87134
87154
|
},
|
|
87135
87155
|
{
|
|
87136
87156
|
type: "object",
|
|
@@ -87149,7 +87169,7 @@ var schemas_default = {
|
|
|
87149
87169
|
"safari",
|
|
87150
87170
|
"webkit"
|
|
87151
87171
|
],
|
|
87152
|
-
$comment: "`safari` is
|
|
87172
|
+
$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."
|
|
87153
87173
|
},
|
|
87154
87174
|
explicit: {
|
|
87155
87175
|
type: "boolean",
|
|
@@ -87209,7 +87229,7 @@ var schemas_default = {
|
|
|
87209
87229
|
"safari",
|
|
87210
87230
|
"webkit"
|
|
87211
87231
|
],
|
|
87212
|
-
$comment: "`safari` is
|
|
87232
|
+
$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."
|
|
87213
87233
|
},
|
|
87214
87234
|
{
|
|
87215
87235
|
type: "object",
|
|
@@ -87228,7 +87248,7 @@ var schemas_default = {
|
|
|
87228
87248
|
"safari",
|
|
87229
87249
|
"webkit"
|
|
87230
87250
|
],
|
|
87231
|
-
$comment: "`safari` is
|
|
87251
|
+
$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."
|
|
87232
87252
|
},
|
|
87233
87253
|
explicit: {
|
|
87234
87254
|
type: "boolean",
|
|
@@ -87514,7 +87534,7 @@ var schemas_default = {
|
|
|
87514
87534
|
"safari",
|
|
87515
87535
|
"webkit"
|
|
87516
87536
|
],
|
|
87517
|
-
$comment: "`safari` is
|
|
87537
|
+
$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."
|
|
87518
87538
|
},
|
|
87519
87539
|
browser: {
|
|
87520
87540
|
type: "object",
|
|
@@ -87533,7 +87553,7 @@ var schemas_default = {
|
|
|
87533
87553
|
"safari",
|
|
87534
87554
|
"webkit"
|
|
87535
87555
|
],
|
|
87536
|
-
$comment: "`safari` is
|
|
87556
|
+
$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."
|
|
87537
87557
|
},
|
|
87538
87558
|
explicit: {
|
|
87539
87559
|
type: "boolean",
|
|
@@ -87673,6 +87693,26 @@ var schemas_default = {
|
|
|
87673
87693
|
}
|
|
87674
87694
|
}
|
|
87675
87695
|
]
|
|
87696
|
+
},
|
|
87697
|
+
{
|
|
87698
|
+
platforms: "android"
|
|
87699
|
+
},
|
|
87700
|
+
{
|
|
87701
|
+
platforms: [
|
|
87702
|
+
"windows",
|
|
87703
|
+
"mac",
|
|
87704
|
+
"android",
|
|
87705
|
+
"ios"
|
|
87706
|
+
],
|
|
87707
|
+
browsers: "chrome"
|
|
87708
|
+
},
|
|
87709
|
+
{
|
|
87710
|
+
platforms: "ios",
|
|
87711
|
+
browsers: "safari",
|
|
87712
|
+
device: {
|
|
87713
|
+
name: "test-iphone",
|
|
87714
|
+
deviceType: "phone"
|
|
87715
|
+
}
|
|
87676
87716
|
}
|
|
87677
87717
|
]
|
|
87678
87718
|
},
|
|
@@ -100010,7 +100050,7 @@ var schemas_default = {
|
|
|
100010
100050
|
]
|
|
100011
100051
|
},
|
|
100012
100052
|
browsers: {
|
|
100013
|
-
description: "Browsers to run tests on.",
|
|
100053
|
+
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 \u2014 control it via the device descriptor's `headless`/`deviceType`); `headless: true` matches this schema's default and is ignored.",
|
|
100014
100054
|
anyOf: [
|
|
100015
100055
|
{
|
|
100016
100056
|
type: "string",
|
|
@@ -100021,7 +100061,7 @@ var schemas_default = {
|
|
|
100021
100061
|
"safari",
|
|
100022
100062
|
"webkit"
|
|
100023
100063
|
],
|
|
100024
|
-
$comment: "`safari` is
|
|
100064
|
+
$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."
|
|
100025
100065
|
},
|
|
100026
100066
|
{
|
|
100027
100067
|
type: "object",
|
|
@@ -100040,7 +100080,7 @@ var schemas_default = {
|
|
|
100040
100080
|
"safari",
|
|
100041
100081
|
"webkit"
|
|
100042
100082
|
],
|
|
100043
|
-
$comment: "`safari` is
|
|
100083
|
+
$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."
|
|
100044
100084
|
},
|
|
100045
100085
|
explicit: {
|
|
100046
100086
|
type: "boolean",
|
|
@@ -100100,7 +100140,7 @@ var schemas_default = {
|
|
|
100100
100140
|
"safari",
|
|
100101
100141
|
"webkit"
|
|
100102
100142
|
],
|
|
100103
|
-
$comment: "`safari` is
|
|
100143
|
+
$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."
|
|
100104
100144
|
},
|
|
100105
100145
|
{
|
|
100106
100146
|
type: "object",
|
|
@@ -100119,7 +100159,7 @@ var schemas_default = {
|
|
|
100119
100159
|
"safari",
|
|
100120
100160
|
"webkit"
|
|
100121
100161
|
],
|
|
100122
|
-
$comment: "`safari` is
|
|
100162
|
+
$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."
|
|
100123
100163
|
},
|
|
100124
100164
|
explicit: {
|
|
100125
100165
|
type: "boolean",
|
|
@@ -100405,7 +100445,7 @@ var schemas_default = {
|
|
|
100405
100445
|
"safari",
|
|
100406
100446
|
"webkit"
|
|
100407
100447
|
],
|
|
100408
|
-
$comment: "`safari` is
|
|
100448
|
+
$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."
|
|
100409
100449
|
},
|
|
100410
100450
|
browser: {
|
|
100411
100451
|
type: "object",
|
|
@@ -100424,7 +100464,7 @@ var schemas_default = {
|
|
|
100424
100464
|
"safari",
|
|
100425
100465
|
"webkit"
|
|
100426
100466
|
],
|
|
100427
|
-
$comment: "`safari` is
|
|
100467
|
+
$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."
|
|
100428
100468
|
},
|
|
100429
100469
|
explicit: {
|
|
100430
100470
|
type: "boolean",
|
|
@@ -100564,6 +100604,26 @@ var schemas_default = {
|
|
|
100564
100604
|
}
|
|
100565
100605
|
}
|
|
100566
100606
|
]
|
|
100607
|
+
},
|
|
100608
|
+
{
|
|
100609
|
+
platforms: "android"
|
|
100610
|
+
},
|
|
100611
|
+
{
|
|
100612
|
+
platforms: [
|
|
100613
|
+
"windows",
|
|
100614
|
+
"mac",
|
|
100615
|
+
"android",
|
|
100616
|
+
"ios"
|
|
100617
|
+
],
|
|
100618
|
+
browsers: "chrome"
|
|
100619
|
+
},
|
|
100620
|
+
{
|
|
100621
|
+
platforms: "ios",
|
|
100622
|
+
browsers: "safari",
|
|
100623
|
+
device: {
|
|
100624
|
+
name: "test-iphone",
|
|
100625
|
+
deviceType: "phone"
|
|
100626
|
+
}
|
|
100567
100627
|
}
|
|
100568
100628
|
]
|
|
100569
100629
|
}
|
|
@@ -184643,7 +184703,7 @@ var schemas_default = {
|
|
|
184643
184703
|
]
|
|
184644
184704
|
},
|
|
184645
184705
|
browsers: {
|
|
184646
|
-
description: "Browsers to run tests on.",
|
|
184706
|
+
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 \u2014 control it via the device descriptor's `headless`/`deviceType`); `headless: true` matches this schema's default and is ignored.",
|
|
184647
184707
|
anyOf: [
|
|
184648
184708
|
{
|
|
184649
184709
|
type: "string",
|
|
@@ -184654,7 +184714,7 @@ var schemas_default = {
|
|
|
184654
184714
|
"safari",
|
|
184655
184715
|
"webkit"
|
|
184656
184716
|
],
|
|
184657
|
-
$comment: "`safari` is
|
|
184717
|
+
$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."
|
|
184658
184718
|
},
|
|
184659
184719
|
{
|
|
184660
184720
|
type: "object",
|
|
@@ -184673,7 +184733,7 @@ var schemas_default = {
|
|
|
184673
184733
|
"safari",
|
|
184674
184734
|
"webkit"
|
|
184675
184735
|
],
|
|
184676
|
-
$comment: "`safari` is
|
|
184736
|
+
$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."
|
|
184677
184737
|
},
|
|
184678
184738
|
explicit: {
|
|
184679
184739
|
type: "boolean",
|
|
@@ -184733,7 +184793,7 @@ var schemas_default = {
|
|
|
184733
184793
|
"safari",
|
|
184734
184794
|
"webkit"
|
|
184735
184795
|
],
|
|
184736
|
-
$comment: "`safari` is
|
|
184796
|
+
$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."
|
|
184737
184797
|
},
|
|
184738
184798
|
{
|
|
184739
184799
|
type: "object",
|
|
@@ -184752,7 +184812,7 @@ var schemas_default = {
|
|
|
184752
184812
|
"safari",
|
|
184753
184813
|
"webkit"
|
|
184754
184814
|
],
|
|
184755
|
-
$comment: "`safari` is
|
|
184815
|
+
$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."
|
|
184756
184816
|
},
|
|
184757
184817
|
explicit: {
|
|
184758
184818
|
type: "boolean",
|
|
@@ -185038,7 +185098,7 @@ var schemas_default = {
|
|
|
185038
185098
|
"safari",
|
|
185039
185099
|
"webkit"
|
|
185040
185100
|
],
|
|
185041
|
-
$comment: "`safari` is
|
|
185101
|
+
$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."
|
|
185042
185102
|
},
|
|
185043
185103
|
browser: {
|
|
185044
185104
|
type: "object",
|
|
@@ -185057,7 +185117,7 @@ var schemas_default = {
|
|
|
185057
185117
|
"safari",
|
|
185058
185118
|
"webkit"
|
|
185059
185119
|
],
|
|
185060
|
-
$comment: "`safari` is
|
|
185120
|
+
$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."
|
|
185061
185121
|
},
|
|
185062
185122
|
explicit: {
|
|
185063
185123
|
type: "boolean",
|
|
@@ -185197,6 +185257,26 @@ var schemas_default = {
|
|
|
185197
185257
|
}
|
|
185198
185258
|
}
|
|
185199
185259
|
]
|
|
185260
|
+
},
|
|
185261
|
+
{
|
|
185262
|
+
platforms: "android"
|
|
185263
|
+
},
|
|
185264
|
+
{
|
|
185265
|
+
platforms: [
|
|
185266
|
+
"windows",
|
|
185267
|
+
"mac",
|
|
185268
|
+
"android",
|
|
185269
|
+
"ios"
|
|
185270
|
+
],
|
|
185271
|
+
browsers: "chrome"
|
|
185272
|
+
},
|
|
185273
|
+
{
|
|
185274
|
+
platforms: "ios",
|
|
185275
|
+
browsers: "safari",
|
|
185276
|
+
device: {
|
|
185277
|
+
name: "test-iphone",
|
|
185278
|
+
deviceType: "phone"
|
|
185279
|
+
}
|
|
185200
185280
|
}
|
|
185201
185281
|
]
|
|
185202
185282
|
}
|
|
@@ -185485,7 +185565,7 @@ var schemas_default = {
|
|
|
185485
185565
|
]
|
|
185486
185566
|
},
|
|
185487
185567
|
browsers: {
|
|
185488
|
-
description: "Browsers to run tests on.",
|
|
185568
|
+
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 \u2014 control it via the device descriptor's `headless`/`deviceType`); `headless: true` matches this schema's default and is ignored.",
|
|
185489
185569
|
anyOf: [
|
|
185490
185570
|
{
|
|
185491
185571
|
type: "string",
|
|
@@ -185496,7 +185576,7 @@ var schemas_default = {
|
|
|
185496
185576
|
"safari",
|
|
185497
185577
|
"webkit"
|
|
185498
185578
|
],
|
|
185499
|
-
$comment: "`safari` is
|
|
185579
|
+
$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."
|
|
185500
185580
|
},
|
|
185501
185581
|
{
|
|
185502
185582
|
type: "object",
|
|
@@ -185515,7 +185595,7 @@ var schemas_default = {
|
|
|
185515
185595
|
"safari",
|
|
185516
185596
|
"webkit"
|
|
185517
185597
|
],
|
|
185518
|
-
$comment: "`safari` is
|
|
185598
|
+
$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."
|
|
185519
185599
|
},
|
|
185520
185600
|
explicit: {
|
|
185521
185601
|
type: "boolean",
|
|
@@ -185575,7 +185655,7 @@ var schemas_default = {
|
|
|
185575
185655
|
"safari",
|
|
185576
185656
|
"webkit"
|
|
185577
185657
|
],
|
|
185578
|
-
$comment: "`safari` is
|
|
185658
|
+
$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."
|
|
185579
185659
|
},
|
|
185580
185660
|
{
|
|
185581
185661
|
type: "object",
|
|
@@ -185594,7 +185674,7 @@ var schemas_default = {
|
|
|
185594
185674
|
"safari",
|
|
185595
185675
|
"webkit"
|
|
185596
185676
|
],
|
|
185597
|
-
$comment: "`safari` is
|
|
185677
|
+
$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."
|
|
185598
185678
|
},
|
|
185599
185679
|
explicit: {
|
|
185600
185680
|
type: "boolean",
|
|
@@ -185880,7 +185960,7 @@ var schemas_default = {
|
|
|
185880
185960
|
"safari",
|
|
185881
185961
|
"webkit"
|
|
185882
185962
|
],
|
|
185883
|
-
$comment: "`safari` is
|
|
185963
|
+
$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."
|
|
185884
185964
|
},
|
|
185885
185965
|
browser: {
|
|
185886
185966
|
type: "object",
|
|
@@ -185899,7 +185979,7 @@ var schemas_default = {
|
|
|
185899
185979
|
"safari",
|
|
185900
185980
|
"webkit"
|
|
185901
185981
|
],
|
|
185902
|
-
$comment: "`safari` is
|
|
185982
|
+
$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."
|
|
185903
185983
|
},
|
|
185904
185984
|
explicit: {
|
|
185905
185985
|
type: "boolean",
|
|
@@ -186039,6 +186119,26 @@ var schemas_default = {
|
|
|
186039
186119
|
}
|
|
186040
186120
|
}
|
|
186041
186121
|
]
|
|
186122
|
+
},
|
|
186123
|
+
{
|
|
186124
|
+
platforms: "android"
|
|
186125
|
+
},
|
|
186126
|
+
{
|
|
186127
|
+
platforms: [
|
|
186128
|
+
"windows",
|
|
186129
|
+
"mac",
|
|
186130
|
+
"android",
|
|
186131
|
+
"ios"
|
|
186132
|
+
],
|
|
186133
|
+
browsers: "chrome"
|
|
186134
|
+
},
|
|
186135
|
+
{
|
|
186136
|
+
platforms: "ios",
|
|
186137
|
+
browsers: "safari",
|
|
186138
|
+
device: {
|
|
186139
|
+
name: "test-iphone",
|
|
186140
|
+
deviceType: "phone"
|
|
186141
|
+
}
|
|
186042
186142
|
}
|
|
186043
186143
|
]
|
|
186044
186144
|
}
|
|
@@ -228200,7 +228300,7 @@ var schemas_default = {
|
|
|
228200
228300
|
"safari",
|
|
228201
228301
|
"webkit"
|
|
228202
228302
|
],
|
|
228203
|
-
$comment: "`safari` is
|
|
228303
|
+
$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."
|
|
228204
228304
|
},
|
|
228205
228305
|
explicit: {
|
|
228206
228306
|
type: "boolean",
|
|
@@ -270544,7 +270644,7 @@ var schemas_default = {
|
|
|
270544
270644
|
]
|
|
270545
270645
|
},
|
|
270546
270646
|
browsers: {
|
|
270547
|
-
description: "Browsers to run tests on.",
|
|
270647
|
+
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 \u2014 control it via the device descriptor's `headless`/`deviceType`); `headless: true` matches this schema's default and is ignored.",
|
|
270548
270648
|
anyOf: [
|
|
270549
270649
|
{
|
|
270550
270650
|
type: "string",
|
|
@@ -270555,7 +270655,7 @@ var schemas_default = {
|
|
|
270555
270655
|
"safari",
|
|
270556
270656
|
"webkit"
|
|
270557
270657
|
],
|
|
270558
|
-
$comment: "`safari` is
|
|
270658
|
+
$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."
|
|
270559
270659
|
},
|
|
270560
270660
|
{
|
|
270561
270661
|
type: "object",
|
|
@@ -270574,7 +270674,7 @@ var schemas_default = {
|
|
|
270574
270674
|
"safari",
|
|
270575
270675
|
"webkit"
|
|
270576
270676
|
],
|
|
270577
|
-
$comment: "`safari` is
|
|
270677
|
+
$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."
|
|
270578
270678
|
},
|
|
270579
270679
|
explicit: {
|
|
270580
270680
|
type: "boolean",
|
|
@@ -270634,7 +270734,7 @@ var schemas_default = {
|
|
|
270634
270734
|
"safari",
|
|
270635
270735
|
"webkit"
|
|
270636
270736
|
],
|
|
270637
|
-
$comment: "`safari` is
|
|
270737
|
+
$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."
|
|
270638
270738
|
},
|
|
270639
270739
|
{
|
|
270640
270740
|
type: "object",
|
|
@@ -270653,7 +270753,7 @@ var schemas_default = {
|
|
|
270653
270753
|
"safari",
|
|
270654
270754
|
"webkit"
|
|
270655
270755
|
],
|
|
270656
|
-
$comment: "`safari` is
|
|
270756
|
+
$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."
|
|
270657
270757
|
},
|
|
270658
270758
|
explicit: {
|
|
270659
270759
|
type: "boolean",
|
|
@@ -270939,7 +271039,7 @@ var schemas_default = {
|
|
|
270939
271039
|
"safari",
|
|
270940
271040
|
"webkit"
|
|
270941
271041
|
],
|
|
270942
|
-
$comment: "`safari` is
|
|
271042
|
+
$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."
|
|
270943
271043
|
},
|
|
270944
271044
|
browser: {
|
|
270945
271045
|
type: "object",
|
|
@@ -270958,7 +271058,7 @@ var schemas_default = {
|
|
|
270958
271058
|
"safari",
|
|
270959
271059
|
"webkit"
|
|
270960
271060
|
],
|
|
270961
|
-
$comment: "`safari` is
|
|
271061
|
+
$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."
|
|
270962
271062
|
},
|
|
270963
271063
|
explicit: {
|
|
270964
271064
|
type: "boolean",
|
|
@@ -271098,6 +271198,26 @@ var schemas_default = {
|
|
|
271098
271198
|
}
|
|
271099
271199
|
}
|
|
271100
271200
|
]
|
|
271201
|
+
},
|
|
271202
|
+
{
|
|
271203
|
+
platforms: "android"
|
|
271204
|
+
},
|
|
271205
|
+
{
|
|
271206
|
+
platforms: [
|
|
271207
|
+
"windows",
|
|
271208
|
+
"mac",
|
|
271209
|
+
"android",
|
|
271210
|
+
"ios"
|
|
271211
|
+
],
|
|
271212
|
+
browsers: "chrome"
|
|
271213
|
+
},
|
|
271214
|
+
{
|
|
271215
|
+
platforms: "ios",
|
|
271216
|
+
browsers: "safari",
|
|
271217
|
+
device: {
|
|
271218
|
+
name: "test-iphone",
|
|
271219
|
+
deviceType: "phone"
|
|
271220
|
+
}
|
|
271101
271221
|
}
|
|
271102
271222
|
]
|
|
271103
271223
|
}
|
|
@@ -271386,7 +271506,7 @@ var schemas_default = {
|
|
|
271386
271506
|
]
|
|
271387
271507
|
},
|
|
271388
271508
|
browsers: {
|
|
271389
|
-
description: "Browsers to run tests on.",
|
|
271509
|
+
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 \u2014 control it via the device descriptor's `headless`/`deviceType`); `headless: true` matches this schema's default and is ignored.",
|
|
271390
271510
|
anyOf: [
|
|
271391
271511
|
{
|
|
271392
271512
|
type: "string",
|
|
@@ -271397,7 +271517,7 @@ var schemas_default = {
|
|
|
271397
271517
|
"safari",
|
|
271398
271518
|
"webkit"
|
|
271399
271519
|
],
|
|
271400
|
-
$comment: "`safari` is
|
|
271520
|
+
$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."
|
|
271401
271521
|
},
|
|
271402
271522
|
{
|
|
271403
271523
|
type: "object",
|
|
@@ -271416,7 +271536,7 @@ var schemas_default = {
|
|
|
271416
271536
|
"safari",
|
|
271417
271537
|
"webkit"
|
|
271418
271538
|
],
|
|
271419
|
-
$comment: "`safari` is
|
|
271539
|
+
$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."
|
|
271420
271540
|
},
|
|
271421
271541
|
explicit: {
|
|
271422
271542
|
type: "boolean",
|
|
@@ -271476,7 +271596,7 @@ var schemas_default = {
|
|
|
271476
271596
|
"safari",
|
|
271477
271597
|
"webkit"
|
|
271478
271598
|
],
|
|
271479
|
-
$comment: "`safari` is
|
|
271599
|
+
$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."
|
|
271480
271600
|
},
|
|
271481
271601
|
{
|
|
271482
271602
|
type: "object",
|
|
@@ -271495,7 +271615,7 @@ var schemas_default = {
|
|
|
271495
271615
|
"safari",
|
|
271496
271616
|
"webkit"
|
|
271497
271617
|
],
|
|
271498
|
-
$comment: "`safari` is
|
|
271618
|
+
$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."
|
|
271499
271619
|
},
|
|
271500
271620
|
explicit: {
|
|
271501
271621
|
type: "boolean",
|
|
@@ -271781,7 +271901,7 @@ var schemas_default = {
|
|
|
271781
271901
|
"safari",
|
|
271782
271902
|
"webkit"
|
|
271783
271903
|
],
|
|
271784
|
-
$comment: "`safari` is
|
|
271904
|
+
$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."
|
|
271785
271905
|
},
|
|
271786
271906
|
browser: {
|
|
271787
271907
|
type: "object",
|
|
@@ -271800,7 +271920,7 @@ var schemas_default = {
|
|
|
271800
271920
|
"safari",
|
|
271801
271921
|
"webkit"
|
|
271802
271922
|
],
|
|
271803
|
-
$comment: "`safari` is
|
|
271923
|
+
$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."
|
|
271804
271924
|
},
|
|
271805
271925
|
explicit: {
|
|
271806
271926
|
type: "boolean",
|
|
@@ -271940,6 +272060,26 @@ var schemas_default = {
|
|
|
271940
272060
|
}
|
|
271941
272061
|
}
|
|
271942
272062
|
]
|
|
272063
|
+
},
|
|
272064
|
+
{
|
|
272065
|
+
platforms: "android"
|
|
272066
|
+
},
|
|
272067
|
+
{
|
|
272068
|
+
platforms: [
|
|
272069
|
+
"windows",
|
|
272070
|
+
"mac",
|
|
272071
|
+
"android",
|
|
272072
|
+
"ios"
|
|
272073
|
+
],
|
|
272074
|
+
browsers: "chrome"
|
|
272075
|
+
},
|
|
272076
|
+
{
|
|
272077
|
+
platforms: "ios",
|
|
272078
|
+
browsers: "safari",
|
|
272079
|
+
device: {
|
|
272080
|
+
name: "test-iphone",
|
|
272081
|
+
deviceType: "phone"
|
|
272082
|
+
}
|
|
271943
272083
|
}
|
|
271944
272084
|
]
|
|
271945
272085
|
}
|
|
@@ -314101,7 +314241,7 @@ var schemas_default = {
|
|
|
314101
314241
|
"safari",
|
|
314102
314242
|
"webkit"
|
|
314103
314243
|
],
|
|
314104
|
-
$comment: "`safari` is
|
|
314244
|
+
$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."
|
|
314105
314245
|
},
|
|
314106
314246
|
explicit: {
|
|
314107
314247
|
type: "boolean",
|
|
@@ -359658,7 +359798,7 @@ var schemas_default = {
|
|
|
359658
359798
|
]
|
|
359659
359799
|
},
|
|
359660
359800
|
browsers: {
|
|
359661
|
-
description: "Browsers to run tests on.",
|
|
359801
|
+
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 \u2014 control it via the device descriptor's `headless`/`deviceType`); `headless: true` matches this schema's default and is ignored.",
|
|
359662
359802
|
anyOf: [
|
|
359663
359803
|
{
|
|
359664
359804
|
type: "string",
|
|
@@ -359669,7 +359809,7 @@ var schemas_default = {
|
|
|
359669
359809
|
"safari",
|
|
359670
359810
|
"webkit"
|
|
359671
359811
|
],
|
|
359672
|
-
$comment: "`safari` is
|
|
359812
|
+
$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."
|
|
359673
359813
|
},
|
|
359674
359814
|
{
|
|
359675
359815
|
type: "object",
|
|
@@ -359688,7 +359828,7 @@ var schemas_default = {
|
|
|
359688
359828
|
"safari",
|
|
359689
359829
|
"webkit"
|
|
359690
359830
|
],
|
|
359691
|
-
$comment: "`safari` is
|
|
359831
|
+
$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."
|
|
359692
359832
|
},
|
|
359693
359833
|
explicit: {
|
|
359694
359834
|
type: "boolean",
|
|
@@ -359748,7 +359888,7 @@ var schemas_default = {
|
|
|
359748
359888
|
"safari",
|
|
359749
359889
|
"webkit"
|
|
359750
359890
|
],
|
|
359751
|
-
$comment: "`safari` is
|
|
359891
|
+
$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."
|
|
359752
359892
|
},
|
|
359753
359893
|
{
|
|
359754
359894
|
type: "object",
|
|
@@ -359767,7 +359907,7 @@ var schemas_default = {
|
|
|
359767
359907
|
"safari",
|
|
359768
359908
|
"webkit"
|
|
359769
359909
|
],
|
|
359770
|
-
$comment: "`safari` is
|
|
359910
|
+
$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."
|
|
359771
359911
|
},
|
|
359772
359912
|
explicit: {
|
|
359773
359913
|
type: "boolean",
|
|
@@ -360053,7 +360193,7 @@ var schemas_default = {
|
|
|
360053
360193
|
"safari",
|
|
360054
360194
|
"webkit"
|
|
360055
360195
|
],
|
|
360056
|
-
$comment: "`safari` is
|
|
360196
|
+
$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."
|
|
360057
360197
|
},
|
|
360058
360198
|
browser: {
|
|
360059
360199
|
type: "object",
|
|
@@ -360072,7 +360212,7 @@ var schemas_default = {
|
|
|
360072
360212
|
"safari",
|
|
360073
360213
|
"webkit"
|
|
360074
360214
|
],
|
|
360075
|
-
$comment: "`safari` is
|
|
360215
|
+
$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."
|
|
360076
360216
|
},
|
|
360077
360217
|
explicit: {
|
|
360078
360218
|
type: "boolean",
|
|
@@ -360212,6 +360352,26 @@ var schemas_default = {
|
|
|
360212
360352
|
}
|
|
360213
360353
|
}
|
|
360214
360354
|
]
|
|
360355
|
+
},
|
|
360356
|
+
{
|
|
360357
|
+
platforms: "android"
|
|
360358
|
+
},
|
|
360359
|
+
{
|
|
360360
|
+
platforms: [
|
|
360361
|
+
"windows",
|
|
360362
|
+
"mac",
|
|
360363
|
+
"android",
|
|
360364
|
+
"ios"
|
|
360365
|
+
],
|
|
360366
|
+
browsers: "chrome"
|
|
360367
|
+
},
|
|
360368
|
+
{
|
|
360369
|
+
platforms: "ios",
|
|
360370
|
+
browsers: "safari",
|
|
360371
|
+
device: {
|
|
360372
|
+
name: "test-iphone",
|
|
360373
|
+
deviceType: "phone"
|
|
360374
|
+
}
|
|
360215
360375
|
}
|
|
360216
360376
|
]
|
|
360217
360377
|
}
|
|
@@ -360500,7 +360660,7 @@ var schemas_default = {
|
|
|
360500
360660
|
]
|
|
360501
360661
|
},
|
|
360502
360662
|
browsers: {
|
|
360503
|
-
description: "Browsers to run tests on.",
|
|
360663
|
+
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 \u2014 control it via the device descriptor's `headless`/`deviceType`); `headless: true` matches this schema's default and is ignored.",
|
|
360504
360664
|
anyOf: [
|
|
360505
360665
|
{
|
|
360506
360666
|
type: "string",
|
|
@@ -360511,7 +360671,7 @@ var schemas_default = {
|
|
|
360511
360671
|
"safari",
|
|
360512
360672
|
"webkit"
|
|
360513
360673
|
],
|
|
360514
|
-
$comment: "`safari` is
|
|
360674
|
+
$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."
|
|
360515
360675
|
},
|
|
360516
360676
|
{
|
|
360517
360677
|
type: "object",
|
|
@@ -360530,7 +360690,7 @@ var schemas_default = {
|
|
|
360530
360690
|
"safari",
|
|
360531
360691
|
"webkit"
|
|
360532
360692
|
],
|
|
360533
|
-
$comment: "`safari` is
|
|
360693
|
+
$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."
|
|
360534
360694
|
},
|
|
360535
360695
|
explicit: {
|
|
360536
360696
|
type: "boolean",
|
|
@@ -360590,7 +360750,7 @@ var schemas_default = {
|
|
|
360590
360750
|
"safari",
|
|
360591
360751
|
"webkit"
|
|
360592
360752
|
],
|
|
360593
|
-
$comment: "`safari` is
|
|
360753
|
+
$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."
|
|
360594
360754
|
},
|
|
360595
360755
|
{
|
|
360596
360756
|
type: "object",
|
|
@@ -360609,7 +360769,7 @@ var schemas_default = {
|
|
|
360609
360769
|
"safari",
|
|
360610
360770
|
"webkit"
|
|
360611
360771
|
],
|
|
360612
|
-
$comment: "`safari` is
|
|
360772
|
+
$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."
|
|
360613
360773
|
},
|
|
360614
360774
|
explicit: {
|
|
360615
360775
|
type: "boolean",
|
|
@@ -360895,7 +361055,7 @@ var schemas_default = {
|
|
|
360895
361055
|
"safari",
|
|
360896
361056
|
"webkit"
|
|
360897
361057
|
],
|
|
360898
|
-
$comment: "`safari` is
|
|
361058
|
+
$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."
|
|
360899
361059
|
},
|
|
360900
361060
|
browser: {
|
|
360901
361061
|
type: "object",
|
|
@@ -360914,7 +361074,7 @@ var schemas_default = {
|
|
|
360914
361074
|
"safari",
|
|
360915
361075
|
"webkit"
|
|
360916
361076
|
],
|
|
360917
|
-
$comment: "`safari` is
|
|
361077
|
+
$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."
|
|
360918
361078
|
},
|
|
360919
361079
|
explicit: {
|
|
360920
361080
|
type: "boolean",
|
|
@@ -361054,6 +361214,26 @@ var schemas_default = {
|
|
|
361054
361214
|
}
|
|
361055
361215
|
}
|
|
361056
361216
|
]
|
|
361217
|
+
},
|
|
361218
|
+
{
|
|
361219
|
+
platforms: "android"
|
|
361220
|
+
},
|
|
361221
|
+
{
|
|
361222
|
+
platforms: [
|
|
361223
|
+
"windows",
|
|
361224
|
+
"mac",
|
|
361225
|
+
"android",
|
|
361226
|
+
"ios"
|
|
361227
|
+
],
|
|
361228
|
+
browsers: "chrome"
|
|
361229
|
+
},
|
|
361230
|
+
{
|
|
361231
|
+
platforms: "ios",
|
|
361232
|
+
browsers: "safari",
|
|
361233
|
+
device: {
|
|
361234
|
+
name: "test-iphone",
|
|
361235
|
+
deviceType: "phone"
|
|
361236
|
+
}
|
|
361057
361237
|
}
|
|
361058
361238
|
]
|
|
361059
361239
|
}
|
|
@@ -403215,7 +403395,7 @@ var schemas_default = {
|
|
|
403215
403395
|
"safari",
|
|
403216
403396
|
"webkit"
|
|
403217
403397
|
],
|
|
403218
|
-
$comment: "`safari` is
|
|
403398
|
+
$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."
|
|
403219
403399
|
},
|
|
403220
403400
|
explicit: {
|
|
403221
403401
|
type: "boolean",
|
|
@@ -487805,7 +487985,7 @@ var schemas_default = {
|
|
|
487805
487985
|
]
|
|
487806
487986
|
},
|
|
487807
487987
|
browsers: {
|
|
487808
|
-
description: "Browsers to run tests on.",
|
|
487988
|
+
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 \u2014 control it via the device descriptor's `headless`/`deviceType`); `headless: true` matches this schema's default and is ignored.",
|
|
487809
487989
|
anyOf: [
|
|
487810
487990
|
{
|
|
487811
487991
|
type: "string",
|
|
@@ -487816,7 +487996,7 @@ var schemas_default = {
|
|
|
487816
487996
|
"safari",
|
|
487817
487997
|
"webkit"
|
|
487818
487998
|
],
|
|
487819
|
-
$comment: "`safari` is
|
|
487999
|
+
$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."
|
|
487820
488000
|
},
|
|
487821
488001
|
{
|
|
487822
488002
|
type: "object",
|
|
@@ -487835,7 +488015,7 @@ var schemas_default = {
|
|
|
487835
488015
|
"safari",
|
|
487836
488016
|
"webkit"
|
|
487837
488017
|
],
|
|
487838
|
-
$comment: "`safari` is
|
|
488018
|
+
$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."
|
|
487839
488019
|
},
|
|
487840
488020
|
explicit: {
|
|
487841
488021
|
type: "boolean",
|
|
@@ -487895,7 +488075,7 @@ var schemas_default = {
|
|
|
487895
488075
|
"safari",
|
|
487896
488076
|
"webkit"
|
|
487897
488077
|
],
|
|
487898
|
-
$comment: "`safari` is
|
|
488078
|
+
$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."
|
|
487899
488079
|
},
|
|
487900
488080
|
{
|
|
487901
488081
|
type: "object",
|
|
@@ -487914,7 +488094,7 @@ var schemas_default = {
|
|
|
487914
488094
|
"safari",
|
|
487915
488095
|
"webkit"
|
|
487916
488096
|
],
|
|
487917
|
-
$comment: "`safari` is
|
|
488097
|
+
$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."
|
|
487918
488098
|
},
|
|
487919
488099
|
explicit: {
|
|
487920
488100
|
type: "boolean",
|
|
@@ -488200,7 +488380,7 @@ var schemas_default = {
|
|
|
488200
488380
|
"safari",
|
|
488201
488381
|
"webkit"
|
|
488202
488382
|
],
|
|
488203
|
-
$comment: "`safari` is
|
|
488383
|
+
$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."
|
|
488204
488384
|
},
|
|
488205
488385
|
browser: {
|
|
488206
488386
|
type: "object",
|
|
@@ -488219,7 +488399,7 @@ var schemas_default = {
|
|
|
488219
488399
|
"safari",
|
|
488220
488400
|
"webkit"
|
|
488221
488401
|
],
|
|
488222
|
-
$comment: "`safari` is
|
|
488402
|
+
$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."
|
|
488223
488403
|
},
|
|
488224
488404
|
explicit: {
|
|
488225
488405
|
type: "boolean",
|
|
@@ -488359,6 +488539,26 @@ var schemas_default = {
|
|
|
488359
488539
|
}
|
|
488360
488540
|
}
|
|
488361
488541
|
]
|
|
488542
|
+
},
|
|
488543
|
+
{
|
|
488544
|
+
platforms: "android"
|
|
488545
|
+
},
|
|
488546
|
+
{
|
|
488547
|
+
platforms: [
|
|
488548
|
+
"windows",
|
|
488549
|
+
"mac",
|
|
488550
|
+
"android",
|
|
488551
|
+
"ios"
|
|
488552
|
+
],
|
|
488553
|
+
browsers: "chrome"
|
|
488554
|
+
},
|
|
488555
|
+
{
|
|
488556
|
+
platforms: "ios",
|
|
488557
|
+
browsers: "safari",
|
|
488558
|
+
device: {
|
|
488559
|
+
name: "test-iphone",
|
|
488560
|
+
deviceType: "phone"
|
|
488561
|
+
}
|
|
488362
488562
|
}
|
|
488363
488563
|
]
|
|
488364
488564
|
}
|
|
@@ -530520,7 +530720,7 @@ var schemas_default = {
|
|
|
530520
530720
|
"safari",
|
|
530521
530721
|
"webkit"
|
|
530522
530722
|
],
|
|
530523
|
-
$comment: "`safari` is
|
|
530723
|
+
$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."
|
|
530524
530724
|
},
|
|
530525
530725
|
explicit: {
|
|
530526
530726
|
type: "boolean",
|