playwright-core 1.56.0-alpha-2025-09-10 → 1.56.0-alpha-1757624765000
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/browsers.json +9 -9
- package/lib/generated/injectedScriptSource.js +1 -1
- package/lib/generated/pollingRecorderSource.js +1 -1
- package/lib/server/bidi/bidiBrowser.js +35 -10
- package/lib/server/bidi/bidiNetworkManager.js +3 -1
- package/lib/server/bidi/bidiPage.js +25 -12
- package/lib/server/chromium/crPage.js +7 -4
- package/lib/server/codegen/csharp.js +19 -26
- package/lib/server/codegen/java.js +4 -0
- package/lib/server/codegen/javascript.js +3 -1
- package/lib/server/codegen/python.js +2 -0
- package/lib/server/deviceDescriptorsSource.json +56 -56
- package/lib/server/dom.js +1 -0
- package/lib/server/recorder/recorderRunner.js +4 -0
- package/lib/server/utils/env.js +7 -2
- package/lib/vite/htmlReport/index.html +1 -1
- package/lib/vite/recorder/assets/{codeMirrorModule-B99R0BS5.js → codeMirrorModule-BAcfJzlM.js} +1 -1
- package/lib/vite/recorder/assets/{index-DhBvyf_c.js → index-BUUUpGps.js} +2 -2
- package/lib/vite/recorder/assets/index-CgG-oz1O.css +1 -0
- package/lib/vite/recorder/index.html +2 -2
- package/lib/vite/traceViewer/assets/{codeMirrorModule-6H0GAURA.js → codeMirrorModule-D8Z8khMJ.js} +1 -1
- package/lib/vite/traceViewer/assets/defaultSettingsView-DZUHQEf1.js +256 -0
- package/lib/vite/traceViewer/defaultSettingsView.BKj3bZ0J.css +1 -0
- package/lib/vite/traceViewer/{index.CjIIjfUv.js → index.Bhbvs2kx.js} +1 -1
- package/lib/vite/traceViewer/index.html +3 -3
- package/lib/vite/traceViewer/uiMode.CmsGRTbS.css +1 -0
- package/lib/vite/traceViewer/{uiMode.DhiYsBOb.js → uiMode.Dn3mFhUe.js} +4 -4
- package/lib/vite/traceViewer/uiMode.html +4 -4
- package/package.json +1 -1
- package/lib/vite/recorder/assets/index-DCz4ptjE.css +0 -1
- package/lib/vite/traceViewer/assets/defaultSettingsView-r-q8L_9l.js +0 -256
- package/lib/vite/traceViewer/defaultSettingsView.CKxaMsyM.css +0 -1
- package/lib/vite/traceViewer/uiMode.2Kf1KKoM.css +0 -1
|
@@ -109,9 +109,13 @@ class CSharpLanguageGenerator {
|
|
|
109
109
|
const options = (0, import_language.toClickOptionsForSourceCode)(action);
|
|
110
110
|
if (!Object.entries(options).length)
|
|
111
111
|
return `await ${subject}.${this._asLocator(action.selector)}.${method}Async();`;
|
|
112
|
-
const optionsString = formatObject(options, " "
|
|
112
|
+
const optionsString = formatObject(options, " ");
|
|
113
113
|
return `await ${subject}.${this._asLocator(action.selector)}.${method}Async(${optionsString});`;
|
|
114
114
|
}
|
|
115
|
+
case "hover": {
|
|
116
|
+
const optionsString = action.position ? formatObject({ position: action.position }, " ") : "";
|
|
117
|
+
return `await ${subject}.${this._asLocator(action.selector)}.HoverAsync(${optionsString});`;
|
|
118
|
+
}
|
|
115
119
|
case "check":
|
|
116
120
|
return `await ${subject}.${this._asLocator(action.selector)}.CheckAsync();`;
|
|
117
121
|
case "uncheck":
|
|
@@ -159,11 +163,11 @@ class CSharpLanguageGenerator {
|
|
|
159
163
|
using System.Threading.Tasks;
|
|
160
164
|
|
|
161
165
|
using var playwright = await Playwright.CreateAsync();
|
|
162
|
-
await using var browser = await playwright.${toPascal(options.browserName)}.LaunchAsync(${formatObject(options.launchOptions, " "
|
|
166
|
+
await using var browser = await playwright.${toPascal(options.browserName)}.LaunchAsync(${formatObject(options.launchOptions, " ")});
|
|
163
167
|
var context = await browser.NewContextAsync(${formatContextOptions(options.contextOptions, options.deviceName)});`);
|
|
164
168
|
if (options.contextOptions.recordHar) {
|
|
165
169
|
const url = options.contextOptions.recordHar.urlFilter;
|
|
166
|
-
formatter.add(` await context.RouteFromHARAsync(${quote(options.contextOptions.recordHar.path)}${url ? `, ${formatObject({ url }, " "
|
|
170
|
+
formatter.add(` await context.RouteFromHARAsync(${quote(options.contextOptions.recordHar.path)}${url ? `, ${formatObject({ url }, " ")}` : ""});`);
|
|
167
171
|
}
|
|
168
172
|
formatter.newLine();
|
|
169
173
|
return formatter.format();
|
|
@@ -191,14 +195,14 @@ class CSharpLanguageGenerator {
|
|
|
191
195
|
{`);
|
|
192
196
|
if (options.contextOptions.recordHar) {
|
|
193
197
|
const url = options.contextOptions.recordHar.urlFilter;
|
|
194
|
-
formatter.add(` await Context.RouteFromHARAsync(${quote(options.contextOptions.recordHar.path)}${url ? `, ${formatObject({ url }, " "
|
|
198
|
+
formatter.add(` await Context.RouteFromHARAsync(${quote(options.contextOptions.recordHar.path)}${url ? `, ${formatObject({ url }, " ")}` : ""});`);
|
|
195
199
|
}
|
|
196
200
|
return formatter.format();
|
|
197
201
|
}
|
|
198
202
|
generateFooter(saveStorage) {
|
|
199
203
|
const offset = this._mode === "library" ? "" : " ";
|
|
200
204
|
let storageStateLine = saveStorage ? `
|
|
201
|
-
${offset}await context.StorageStateAsync(new
|
|
205
|
+
${offset}await context.StorageStateAsync(new()
|
|
202
206
|
${offset}{
|
|
203
207
|
${offset} Path = ${quote(saveStorage)}
|
|
204
208
|
${offset}});
|
|
@@ -212,8 +216,8 @@ ${offset}});
|
|
|
212
216
|
}
|
|
213
217
|
function formatObject(value, indent = " ", name = "") {
|
|
214
218
|
if (typeof value === "string") {
|
|
215
|
-
if (["
|
|
216
|
-
return `${
|
|
219
|
+
if (["colorScheme", "modifiers", "button", "recordHarContent", "recordHarMode", "serviceWorkers"].includes(name))
|
|
220
|
+
return `${getEnumName(name)}.${toPascal(value)}`;
|
|
217
221
|
return quote(value);
|
|
218
222
|
}
|
|
219
223
|
if (Array.isArray(value))
|
|
@@ -221,35 +225,24 @@ function formatObject(value, indent = " ", name = "") {
|
|
|
221
225
|
if (typeof value === "object") {
|
|
222
226
|
const keys = Object.keys(value).filter((key) => value[key] !== void 0).sort();
|
|
223
227
|
if (!keys.length)
|
|
224
|
-
return
|
|
228
|
+
return `new()`;
|
|
225
229
|
const tokens = [];
|
|
226
230
|
for (const key of keys) {
|
|
227
231
|
const property = getPropertyName(key);
|
|
228
232
|
tokens.push(`${property} = ${formatObject(value[key], indent, key)},`);
|
|
229
233
|
}
|
|
230
|
-
|
|
231
|
-
return `new ${getClassName(name)}
|
|
234
|
+
return `new()
|
|
232
235
|
{
|
|
233
236
|
${indent}${tokens.join(`
|
|
234
237
|
${indent}`)}
|
|
235
|
-
${indent}}`;
|
|
236
|
-
return `{
|
|
237
|
-
${indent}${tokens.join(`
|
|
238
|
-
${indent}`)}
|
|
239
238
|
${indent}}`;
|
|
240
239
|
}
|
|
241
240
|
if (name === "latitude" || name === "longitude")
|
|
242
241
|
return String(value) + "m";
|
|
243
242
|
return String(value);
|
|
244
243
|
}
|
|
245
|
-
function
|
|
244
|
+
function getEnumName(value) {
|
|
246
245
|
switch (value) {
|
|
247
|
-
case "viewport":
|
|
248
|
-
return "ViewportSize";
|
|
249
|
-
case "proxy":
|
|
250
|
-
return "ProxySettings";
|
|
251
|
-
case "permissions":
|
|
252
|
-
return "ContextPermission";
|
|
253
246
|
case "modifiers":
|
|
254
247
|
return "KeyboardModifier";
|
|
255
248
|
case "button":
|
|
@@ -278,18 +271,18 @@ function toPascal(value) {
|
|
|
278
271
|
return value[0].toUpperCase() + value.slice(1);
|
|
279
272
|
}
|
|
280
273
|
function formatContextOptions(contextOptions, deviceName) {
|
|
281
|
-
|
|
274
|
+
const options = { ...contextOptions };
|
|
282
275
|
delete options.recordHar;
|
|
283
276
|
const device = deviceName && import_deviceDescriptors.deviceDescriptors[deviceName];
|
|
284
277
|
if (!device) {
|
|
285
278
|
if (!Object.entries(options).length)
|
|
286
279
|
return "";
|
|
287
|
-
return formatObject(options, " "
|
|
280
|
+
return formatObject(options, " ");
|
|
288
281
|
}
|
|
289
|
-
|
|
290
|
-
if (!Object.entries(options).length)
|
|
282
|
+
if (!Object.entries((0, import_language.sanitizeDeviceOptions)(device, options)).length)
|
|
291
283
|
return `playwright.Devices[${quote(deviceName)}]`;
|
|
292
|
-
|
|
284
|
+
delete options["defaultBrowserType"];
|
|
285
|
+
return formatObject(options, " ");
|
|
293
286
|
}
|
|
294
287
|
class CSharpFormatter {
|
|
295
288
|
constructor(offset = 0) {
|
|
@@ -91,6 +91,10 @@ class JavaLanguageGenerator {
|
|
|
91
91
|
const optionsText = formatClickOptions(options);
|
|
92
92
|
return `${subject}.${this._asLocator(action.selector, inFrameLocator)}.${method}(${optionsText});`;
|
|
93
93
|
}
|
|
94
|
+
case "hover": {
|
|
95
|
+
const optionsText = action.position ? `new Locator.HoverOptions().setPosition(${action.position.x}, ${action.position.y})` : "";
|
|
96
|
+
return `${subject}.${this._asLocator(action.selector, inFrameLocator)}.hover(${optionsText});`;
|
|
97
|
+
}
|
|
94
98
|
case "check":
|
|
95
99
|
return `${subject}.${this._asLocator(action.selector, inFrameLocator)}.check();`;
|
|
96
100
|
case "uncheck":
|
|
@@ -81,6 +81,8 @@ class JavaScriptLanguageGenerator {
|
|
|
81
81
|
const optionsString = formatOptions(options, false);
|
|
82
82
|
return `await ${subject}.${this._asLocator(action.selector)}.${method}(${optionsString});`;
|
|
83
83
|
}
|
|
84
|
+
case "hover":
|
|
85
|
+
return `await ${subject}.${this._asLocator(action.selector)}.hover(${formatOptions({ position: action.position }, false)});`;
|
|
84
86
|
case "check":
|
|
85
87
|
return `await ${subject}.${this._asLocator(action.selector)}.check();`;
|
|
86
88
|
case "uncheck":
|
|
@@ -166,7 +168,7 @@ ${useText ? "\ntest.use(" + useText + ");\n" : ""}
|
|
|
166
168
|
}
|
|
167
169
|
}
|
|
168
170
|
function formatOptions(value, hasArguments) {
|
|
169
|
-
const keys = Object.keys(value);
|
|
171
|
+
const keys = Object.keys(value).filter((key) => value[key] !== void 0);
|
|
170
172
|
if (!keys.length)
|
|
171
173
|
return "";
|
|
172
174
|
return (hasArguments ? ", " : "") + formatObject(value);
|
|
@@ -83,6 +83,8 @@ class PythonLanguageGenerator {
|
|
|
83
83
|
const optionsString = formatOptions(options, false);
|
|
84
84
|
return `${subject}.${this._asLocator(action.selector)}.${method}(${optionsString})`;
|
|
85
85
|
}
|
|
86
|
+
case "hover":
|
|
87
|
+
return `${subject}.${this._asLocator(action.selector)}.hover(${formatOptions({ position: action.position }, false)})`;
|
|
86
88
|
case "check":
|
|
87
89
|
return `${subject}.${this._asLocator(action.selector)}.check()`;
|
|
88
90
|
case "uncheck":
|
|
@@ -110,7 +110,7 @@
|
|
|
110
110
|
"defaultBrowserType": "webkit"
|
|
111
111
|
},
|
|
112
112
|
"Galaxy S5": {
|
|
113
|
-
"userAgent": "Mozilla/5.0 (Linux; Android 5.0; SM-G900P Build/LRX21T) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/141.0.7390.
|
|
113
|
+
"userAgent": "Mozilla/5.0 (Linux; Android 5.0; SM-G900P Build/LRX21T) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/141.0.7390.16 Mobile Safari/537.36",
|
|
114
114
|
"viewport": {
|
|
115
115
|
"width": 360,
|
|
116
116
|
"height": 640
|
|
@@ -121,7 +121,7 @@
|
|
|
121
121
|
"defaultBrowserType": "chromium"
|
|
122
122
|
},
|
|
123
123
|
"Galaxy S5 landscape": {
|
|
124
|
-
"userAgent": "Mozilla/5.0 (Linux; Android 5.0; SM-G900P Build/LRX21T) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/141.0.7390.
|
|
124
|
+
"userAgent": "Mozilla/5.0 (Linux; Android 5.0; SM-G900P Build/LRX21T) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/141.0.7390.16 Mobile Safari/537.36",
|
|
125
125
|
"viewport": {
|
|
126
126
|
"width": 640,
|
|
127
127
|
"height": 360
|
|
@@ -132,7 +132,7 @@
|
|
|
132
132
|
"defaultBrowserType": "chromium"
|
|
133
133
|
},
|
|
134
134
|
"Galaxy S8": {
|
|
135
|
-
"userAgent": "Mozilla/5.0 (Linux; Android 7.0; SM-G950U Build/NRD90M) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/141.0.7390.
|
|
135
|
+
"userAgent": "Mozilla/5.0 (Linux; Android 7.0; SM-G950U Build/NRD90M) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/141.0.7390.16 Mobile Safari/537.36",
|
|
136
136
|
"viewport": {
|
|
137
137
|
"width": 360,
|
|
138
138
|
"height": 740
|
|
@@ -143,7 +143,7 @@
|
|
|
143
143
|
"defaultBrowserType": "chromium"
|
|
144
144
|
},
|
|
145
145
|
"Galaxy S8 landscape": {
|
|
146
|
-
"userAgent": "Mozilla/5.0 (Linux; Android 7.0; SM-G950U Build/NRD90M) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/141.0.7390.
|
|
146
|
+
"userAgent": "Mozilla/5.0 (Linux; Android 7.0; SM-G950U Build/NRD90M) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/141.0.7390.16 Mobile Safari/537.36",
|
|
147
147
|
"viewport": {
|
|
148
148
|
"width": 740,
|
|
149
149
|
"height": 360
|
|
@@ -154,7 +154,7 @@
|
|
|
154
154
|
"defaultBrowserType": "chromium"
|
|
155
155
|
},
|
|
156
156
|
"Galaxy S9+": {
|
|
157
|
-
"userAgent": "Mozilla/5.0 (Linux; Android 8.0.0; SM-G965U Build/R16NW) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/141.0.7390.
|
|
157
|
+
"userAgent": "Mozilla/5.0 (Linux; Android 8.0.0; SM-G965U Build/R16NW) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/141.0.7390.16 Mobile Safari/537.36",
|
|
158
158
|
"viewport": {
|
|
159
159
|
"width": 320,
|
|
160
160
|
"height": 658
|
|
@@ -165,7 +165,7 @@
|
|
|
165
165
|
"defaultBrowserType": "chromium"
|
|
166
166
|
},
|
|
167
167
|
"Galaxy S9+ landscape": {
|
|
168
|
-
"userAgent": "Mozilla/5.0 (Linux; Android 8.0.0; SM-G965U Build/R16NW) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/141.0.7390.
|
|
168
|
+
"userAgent": "Mozilla/5.0 (Linux; Android 8.0.0; SM-G965U Build/R16NW) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/141.0.7390.16 Mobile Safari/537.36",
|
|
169
169
|
"viewport": {
|
|
170
170
|
"width": 658,
|
|
171
171
|
"height": 320
|
|
@@ -176,7 +176,7 @@
|
|
|
176
176
|
"defaultBrowserType": "chromium"
|
|
177
177
|
},
|
|
178
178
|
"Galaxy S24": {
|
|
179
|
-
"userAgent": "Mozilla/5.0 (Linux; Android 14; SM-S921U) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/141.0.7390.
|
|
179
|
+
"userAgent": "Mozilla/5.0 (Linux; Android 14; SM-S921U) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/141.0.7390.16 Mobile Safari/537.36",
|
|
180
180
|
"viewport": {
|
|
181
181
|
"width": 360,
|
|
182
182
|
"height": 780
|
|
@@ -187,7 +187,7 @@
|
|
|
187
187
|
"defaultBrowserType": "chromium"
|
|
188
188
|
},
|
|
189
189
|
"Galaxy S24 landscape": {
|
|
190
|
-
"userAgent": "Mozilla/5.0 (Linux; Android 14; SM-S921U) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/141.0.7390.
|
|
190
|
+
"userAgent": "Mozilla/5.0 (Linux; Android 14; SM-S921U) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/141.0.7390.16 Mobile Safari/537.36",
|
|
191
191
|
"viewport": {
|
|
192
192
|
"width": 780,
|
|
193
193
|
"height": 360
|
|
@@ -198,7 +198,7 @@
|
|
|
198
198
|
"defaultBrowserType": "chromium"
|
|
199
199
|
},
|
|
200
200
|
"Galaxy A55": {
|
|
201
|
-
"userAgent": "Mozilla/5.0 (Linux; Android 14; SM-A556B) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/141.0.7390.
|
|
201
|
+
"userAgent": "Mozilla/5.0 (Linux; Android 14; SM-A556B) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/141.0.7390.16 Mobile Safari/537.36",
|
|
202
202
|
"viewport": {
|
|
203
203
|
"width": 480,
|
|
204
204
|
"height": 1040
|
|
@@ -209,7 +209,7 @@
|
|
|
209
209
|
"defaultBrowserType": "chromium"
|
|
210
210
|
},
|
|
211
211
|
"Galaxy A55 landscape": {
|
|
212
|
-
"userAgent": "Mozilla/5.0 (Linux; Android 14; SM-A556B) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/141.0.7390.
|
|
212
|
+
"userAgent": "Mozilla/5.0 (Linux; Android 14; SM-A556B) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/141.0.7390.16 Mobile Safari/537.36",
|
|
213
213
|
"viewport": {
|
|
214
214
|
"width": 1040,
|
|
215
215
|
"height": 480
|
|
@@ -220,7 +220,7 @@
|
|
|
220
220
|
"defaultBrowserType": "chromium"
|
|
221
221
|
},
|
|
222
222
|
"Galaxy Tab S4": {
|
|
223
|
-
"userAgent": "Mozilla/5.0 (Linux; Android 8.1.0; SM-T837A) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/141.0.7390.
|
|
223
|
+
"userAgent": "Mozilla/5.0 (Linux; Android 8.1.0; SM-T837A) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/141.0.7390.16 Safari/537.36",
|
|
224
224
|
"viewport": {
|
|
225
225
|
"width": 712,
|
|
226
226
|
"height": 1138
|
|
@@ -231,7 +231,7 @@
|
|
|
231
231
|
"defaultBrowserType": "chromium"
|
|
232
232
|
},
|
|
233
233
|
"Galaxy Tab S4 landscape": {
|
|
234
|
-
"userAgent": "Mozilla/5.0 (Linux; Android 8.1.0; SM-T837A) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/141.0.7390.
|
|
234
|
+
"userAgent": "Mozilla/5.0 (Linux; Android 8.1.0; SM-T837A) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/141.0.7390.16 Safari/537.36",
|
|
235
235
|
"viewport": {
|
|
236
236
|
"width": 1138,
|
|
237
237
|
"height": 712
|
|
@@ -242,7 +242,7 @@
|
|
|
242
242
|
"defaultBrowserType": "chromium"
|
|
243
243
|
},
|
|
244
244
|
"Galaxy Tab S9": {
|
|
245
|
-
"userAgent": "Mozilla/5.0 (Linux; Android 14; SM-X710) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/141.0.7390.
|
|
245
|
+
"userAgent": "Mozilla/5.0 (Linux; Android 14; SM-X710) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/141.0.7390.16 Safari/537.36",
|
|
246
246
|
"viewport": {
|
|
247
247
|
"width": 640,
|
|
248
248
|
"height": 1024
|
|
@@ -253,7 +253,7 @@
|
|
|
253
253
|
"defaultBrowserType": "chromium"
|
|
254
254
|
},
|
|
255
255
|
"Galaxy Tab S9 landscape": {
|
|
256
|
-
"userAgent": "Mozilla/5.0 (Linux; Android 14; SM-X710) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/141.0.7390.
|
|
256
|
+
"userAgent": "Mozilla/5.0 (Linux; Android 14; SM-X710) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/141.0.7390.16 Safari/537.36",
|
|
257
257
|
"viewport": {
|
|
258
258
|
"width": 1024,
|
|
259
259
|
"height": 640
|
|
@@ -1208,7 +1208,7 @@
|
|
|
1208
1208
|
"defaultBrowserType": "webkit"
|
|
1209
1209
|
},
|
|
1210
1210
|
"LG Optimus L70": {
|
|
1211
|
-
"userAgent": "Mozilla/5.0 (Linux; U; Android 4.4.2; en-us; LGMS323 Build/KOT49I.MS32310c) AppleWebKit/537.36 (KHTML, like Gecko) Version/4.0 Chrome/141.0.7390.
|
|
1211
|
+
"userAgent": "Mozilla/5.0 (Linux; U; Android 4.4.2; en-us; LGMS323 Build/KOT49I.MS32310c) AppleWebKit/537.36 (KHTML, like Gecko) Version/4.0 Chrome/141.0.7390.16 Mobile Safari/537.36",
|
|
1212
1212
|
"viewport": {
|
|
1213
1213
|
"width": 384,
|
|
1214
1214
|
"height": 640
|
|
@@ -1219,7 +1219,7 @@
|
|
|
1219
1219
|
"defaultBrowserType": "chromium"
|
|
1220
1220
|
},
|
|
1221
1221
|
"LG Optimus L70 landscape": {
|
|
1222
|
-
"userAgent": "Mozilla/5.0 (Linux; U; Android 4.4.2; en-us; LGMS323 Build/KOT49I.MS32310c) AppleWebKit/537.36 (KHTML, like Gecko) Version/4.0 Chrome/141.0.7390.
|
|
1222
|
+
"userAgent": "Mozilla/5.0 (Linux; U; Android 4.4.2; en-us; LGMS323 Build/KOT49I.MS32310c) AppleWebKit/537.36 (KHTML, like Gecko) Version/4.0 Chrome/141.0.7390.16 Mobile Safari/537.36",
|
|
1223
1223
|
"viewport": {
|
|
1224
1224
|
"width": 640,
|
|
1225
1225
|
"height": 384
|
|
@@ -1230,7 +1230,7 @@
|
|
|
1230
1230
|
"defaultBrowserType": "chromium"
|
|
1231
1231
|
},
|
|
1232
1232
|
"Microsoft Lumia 550": {
|
|
1233
|
-
"userAgent": "Mozilla/5.0 (Windows Phone 10.0; Android 4.2.1; Microsoft; Lumia 550) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/141.0.7390.
|
|
1233
|
+
"userAgent": "Mozilla/5.0 (Windows Phone 10.0; Android 4.2.1; Microsoft; Lumia 550) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/141.0.7390.16 Mobile Safari/537.36 Edge/14.14263",
|
|
1234
1234
|
"viewport": {
|
|
1235
1235
|
"width": 360,
|
|
1236
1236
|
"height": 640
|
|
@@ -1241,7 +1241,7 @@
|
|
|
1241
1241
|
"defaultBrowserType": "chromium"
|
|
1242
1242
|
},
|
|
1243
1243
|
"Microsoft Lumia 550 landscape": {
|
|
1244
|
-
"userAgent": "Mozilla/5.0 (Windows Phone 10.0; Android 4.2.1; Microsoft; Lumia 550) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/141.0.7390.
|
|
1244
|
+
"userAgent": "Mozilla/5.0 (Windows Phone 10.0; Android 4.2.1; Microsoft; Lumia 550) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/141.0.7390.16 Mobile Safari/537.36 Edge/14.14263",
|
|
1245
1245
|
"viewport": {
|
|
1246
1246
|
"width": 640,
|
|
1247
1247
|
"height": 360
|
|
@@ -1252,7 +1252,7 @@
|
|
|
1252
1252
|
"defaultBrowserType": "chromium"
|
|
1253
1253
|
},
|
|
1254
1254
|
"Microsoft Lumia 950": {
|
|
1255
|
-
"userAgent": "Mozilla/5.0 (Windows Phone 10.0; Android 4.2.1; Microsoft; Lumia 950) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/141.0.7390.
|
|
1255
|
+
"userAgent": "Mozilla/5.0 (Windows Phone 10.0; Android 4.2.1; Microsoft; Lumia 950) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/141.0.7390.16 Mobile Safari/537.36 Edge/14.14263",
|
|
1256
1256
|
"viewport": {
|
|
1257
1257
|
"width": 360,
|
|
1258
1258
|
"height": 640
|
|
@@ -1263,7 +1263,7 @@
|
|
|
1263
1263
|
"defaultBrowserType": "chromium"
|
|
1264
1264
|
},
|
|
1265
1265
|
"Microsoft Lumia 950 landscape": {
|
|
1266
|
-
"userAgent": "Mozilla/5.0 (Windows Phone 10.0; Android 4.2.1; Microsoft; Lumia 950) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/141.0.7390.
|
|
1266
|
+
"userAgent": "Mozilla/5.0 (Windows Phone 10.0; Android 4.2.1; Microsoft; Lumia 950) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/141.0.7390.16 Mobile Safari/537.36 Edge/14.14263",
|
|
1267
1267
|
"viewport": {
|
|
1268
1268
|
"width": 640,
|
|
1269
1269
|
"height": 360
|
|
@@ -1274,7 +1274,7 @@
|
|
|
1274
1274
|
"defaultBrowserType": "chromium"
|
|
1275
1275
|
},
|
|
1276
1276
|
"Nexus 10": {
|
|
1277
|
-
"userAgent": "Mozilla/5.0 (Linux; Android 6.0.1; Nexus 10 Build/MOB31T) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/141.0.7390.
|
|
1277
|
+
"userAgent": "Mozilla/5.0 (Linux; Android 6.0.1; Nexus 10 Build/MOB31T) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/141.0.7390.16 Safari/537.36",
|
|
1278
1278
|
"viewport": {
|
|
1279
1279
|
"width": 800,
|
|
1280
1280
|
"height": 1280
|
|
@@ -1285,7 +1285,7 @@
|
|
|
1285
1285
|
"defaultBrowserType": "chromium"
|
|
1286
1286
|
},
|
|
1287
1287
|
"Nexus 10 landscape": {
|
|
1288
|
-
"userAgent": "Mozilla/5.0 (Linux; Android 6.0.1; Nexus 10 Build/MOB31T) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/141.0.7390.
|
|
1288
|
+
"userAgent": "Mozilla/5.0 (Linux; Android 6.0.1; Nexus 10 Build/MOB31T) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/141.0.7390.16 Safari/537.36",
|
|
1289
1289
|
"viewport": {
|
|
1290
1290
|
"width": 1280,
|
|
1291
1291
|
"height": 800
|
|
@@ -1296,7 +1296,7 @@
|
|
|
1296
1296
|
"defaultBrowserType": "chromium"
|
|
1297
1297
|
},
|
|
1298
1298
|
"Nexus 4": {
|
|
1299
|
-
"userAgent": "Mozilla/5.0 (Linux; Android 4.4.2; Nexus 4 Build/KOT49H) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/141.0.7390.
|
|
1299
|
+
"userAgent": "Mozilla/5.0 (Linux; Android 4.4.2; Nexus 4 Build/KOT49H) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/141.0.7390.16 Mobile Safari/537.36",
|
|
1300
1300
|
"viewport": {
|
|
1301
1301
|
"width": 384,
|
|
1302
1302
|
"height": 640
|
|
@@ -1307,7 +1307,7 @@
|
|
|
1307
1307
|
"defaultBrowserType": "chromium"
|
|
1308
1308
|
},
|
|
1309
1309
|
"Nexus 4 landscape": {
|
|
1310
|
-
"userAgent": "Mozilla/5.0 (Linux; Android 4.4.2; Nexus 4 Build/KOT49H) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/141.0.7390.
|
|
1310
|
+
"userAgent": "Mozilla/5.0 (Linux; Android 4.4.2; Nexus 4 Build/KOT49H) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/141.0.7390.16 Mobile Safari/537.36",
|
|
1311
1311
|
"viewport": {
|
|
1312
1312
|
"width": 640,
|
|
1313
1313
|
"height": 384
|
|
@@ -1318,7 +1318,7 @@
|
|
|
1318
1318
|
"defaultBrowserType": "chromium"
|
|
1319
1319
|
},
|
|
1320
1320
|
"Nexus 5": {
|
|
1321
|
-
"userAgent": "Mozilla/5.0 (Linux; Android 6.0; Nexus 5 Build/MRA58N) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/141.0.7390.
|
|
1321
|
+
"userAgent": "Mozilla/5.0 (Linux; Android 6.0; Nexus 5 Build/MRA58N) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/141.0.7390.16 Mobile Safari/537.36",
|
|
1322
1322
|
"viewport": {
|
|
1323
1323
|
"width": 360,
|
|
1324
1324
|
"height": 640
|
|
@@ -1329,7 +1329,7 @@
|
|
|
1329
1329
|
"defaultBrowserType": "chromium"
|
|
1330
1330
|
},
|
|
1331
1331
|
"Nexus 5 landscape": {
|
|
1332
|
-
"userAgent": "Mozilla/5.0 (Linux; Android 6.0; Nexus 5 Build/MRA58N) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/141.0.7390.
|
|
1332
|
+
"userAgent": "Mozilla/5.0 (Linux; Android 6.0; Nexus 5 Build/MRA58N) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/141.0.7390.16 Mobile Safari/537.36",
|
|
1333
1333
|
"viewport": {
|
|
1334
1334
|
"width": 640,
|
|
1335
1335
|
"height": 360
|
|
@@ -1340,7 +1340,7 @@
|
|
|
1340
1340
|
"defaultBrowserType": "chromium"
|
|
1341
1341
|
},
|
|
1342
1342
|
"Nexus 5X": {
|
|
1343
|
-
"userAgent": "Mozilla/5.0 (Linux; Android 8.0.0; Nexus 5X Build/OPR4.170623.006) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/141.0.7390.
|
|
1343
|
+
"userAgent": "Mozilla/5.0 (Linux; Android 8.0.0; Nexus 5X Build/OPR4.170623.006) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/141.0.7390.16 Mobile Safari/537.36",
|
|
1344
1344
|
"viewport": {
|
|
1345
1345
|
"width": 412,
|
|
1346
1346
|
"height": 732
|
|
@@ -1351,7 +1351,7 @@
|
|
|
1351
1351
|
"defaultBrowserType": "chromium"
|
|
1352
1352
|
},
|
|
1353
1353
|
"Nexus 5X landscape": {
|
|
1354
|
-
"userAgent": "Mozilla/5.0 (Linux; Android 8.0.0; Nexus 5X Build/OPR4.170623.006) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/141.0.7390.
|
|
1354
|
+
"userAgent": "Mozilla/5.0 (Linux; Android 8.0.0; Nexus 5X Build/OPR4.170623.006) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/141.0.7390.16 Mobile Safari/537.36",
|
|
1355
1355
|
"viewport": {
|
|
1356
1356
|
"width": 732,
|
|
1357
1357
|
"height": 412
|
|
@@ -1362,7 +1362,7 @@
|
|
|
1362
1362
|
"defaultBrowserType": "chromium"
|
|
1363
1363
|
},
|
|
1364
1364
|
"Nexus 6": {
|
|
1365
|
-
"userAgent": "Mozilla/5.0 (Linux; Android 7.1.1; Nexus 6 Build/N6F26U) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/141.0.7390.
|
|
1365
|
+
"userAgent": "Mozilla/5.0 (Linux; Android 7.1.1; Nexus 6 Build/N6F26U) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/141.0.7390.16 Mobile Safari/537.36",
|
|
1366
1366
|
"viewport": {
|
|
1367
1367
|
"width": 412,
|
|
1368
1368
|
"height": 732
|
|
@@ -1373,7 +1373,7 @@
|
|
|
1373
1373
|
"defaultBrowserType": "chromium"
|
|
1374
1374
|
},
|
|
1375
1375
|
"Nexus 6 landscape": {
|
|
1376
|
-
"userAgent": "Mozilla/5.0 (Linux; Android 7.1.1; Nexus 6 Build/N6F26U) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/141.0.7390.
|
|
1376
|
+
"userAgent": "Mozilla/5.0 (Linux; Android 7.1.1; Nexus 6 Build/N6F26U) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/141.0.7390.16 Mobile Safari/537.36",
|
|
1377
1377
|
"viewport": {
|
|
1378
1378
|
"width": 732,
|
|
1379
1379
|
"height": 412
|
|
@@ -1384,7 +1384,7 @@
|
|
|
1384
1384
|
"defaultBrowserType": "chromium"
|
|
1385
1385
|
},
|
|
1386
1386
|
"Nexus 6P": {
|
|
1387
|
-
"userAgent": "Mozilla/5.0 (Linux; Android 8.0.0; Nexus 6P Build/OPP3.170518.006) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/141.0.7390.
|
|
1387
|
+
"userAgent": "Mozilla/5.0 (Linux; Android 8.0.0; Nexus 6P Build/OPP3.170518.006) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/141.0.7390.16 Mobile Safari/537.36",
|
|
1388
1388
|
"viewport": {
|
|
1389
1389
|
"width": 412,
|
|
1390
1390
|
"height": 732
|
|
@@ -1395,7 +1395,7 @@
|
|
|
1395
1395
|
"defaultBrowserType": "chromium"
|
|
1396
1396
|
},
|
|
1397
1397
|
"Nexus 6P landscape": {
|
|
1398
|
-
"userAgent": "Mozilla/5.0 (Linux; Android 8.0.0; Nexus 6P Build/OPP3.170518.006) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/141.0.7390.
|
|
1398
|
+
"userAgent": "Mozilla/5.0 (Linux; Android 8.0.0; Nexus 6P Build/OPP3.170518.006) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/141.0.7390.16 Mobile Safari/537.36",
|
|
1399
1399
|
"viewport": {
|
|
1400
1400
|
"width": 732,
|
|
1401
1401
|
"height": 412
|
|
@@ -1406,7 +1406,7 @@
|
|
|
1406
1406
|
"defaultBrowserType": "chromium"
|
|
1407
1407
|
},
|
|
1408
1408
|
"Nexus 7": {
|
|
1409
|
-
"userAgent": "Mozilla/5.0 (Linux; Android 6.0.1; Nexus 7 Build/MOB30X) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/141.0.7390.
|
|
1409
|
+
"userAgent": "Mozilla/5.0 (Linux; Android 6.0.1; Nexus 7 Build/MOB30X) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/141.0.7390.16 Safari/537.36",
|
|
1410
1410
|
"viewport": {
|
|
1411
1411
|
"width": 600,
|
|
1412
1412
|
"height": 960
|
|
@@ -1417,7 +1417,7 @@
|
|
|
1417
1417
|
"defaultBrowserType": "chromium"
|
|
1418
1418
|
},
|
|
1419
1419
|
"Nexus 7 landscape": {
|
|
1420
|
-
"userAgent": "Mozilla/5.0 (Linux; Android 6.0.1; Nexus 7 Build/MOB30X) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/141.0.7390.
|
|
1420
|
+
"userAgent": "Mozilla/5.0 (Linux; Android 6.0.1; Nexus 7 Build/MOB30X) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/141.0.7390.16 Safari/537.36",
|
|
1421
1421
|
"viewport": {
|
|
1422
1422
|
"width": 960,
|
|
1423
1423
|
"height": 600
|
|
@@ -1472,7 +1472,7 @@
|
|
|
1472
1472
|
"defaultBrowserType": "webkit"
|
|
1473
1473
|
},
|
|
1474
1474
|
"Pixel 2": {
|
|
1475
|
-
"userAgent": "Mozilla/5.0 (Linux; Android 8.0; Pixel 2 Build/OPD3.170816.012) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/141.0.7390.
|
|
1475
|
+
"userAgent": "Mozilla/5.0 (Linux; Android 8.0; Pixel 2 Build/OPD3.170816.012) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/141.0.7390.16 Mobile Safari/537.36",
|
|
1476
1476
|
"viewport": {
|
|
1477
1477
|
"width": 411,
|
|
1478
1478
|
"height": 731
|
|
@@ -1483,7 +1483,7 @@
|
|
|
1483
1483
|
"defaultBrowserType": "chromium"
|
|
1484
1484
|
},
|
|
1485
1485
|
"Pixel 2 landscape": {
|
|
1486
|
-
"userAgent": "Mozilla/5.0 (Linux; Android 8.0; Pixel 2 Build/OPD3.170816.012) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/141.0.7390.
|
|
1486
|
+
"userAgent": "Mozilla/5.0 (Linux; Android 8.0; Pixel 2 Build/OPD3.170816.012) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/141.0.7390.16 Mobile Safari/537.36",
|
|
1487
1487
|
"viewport": {
|
|
1488
1488
|
"width": 731,
|
|
1489
1489
|
"height": 411
|
|
@@ -1494,7 +1494,7 @@
|
|
|
1494
1494
|
"defaultBrowserType": "chromium"
|
|
1495
1495
|
},
|
|
1496
1496
|
"Pixel 2 XL": {
|
|
1497
|
-
"userAgent": "Mozilla/5.0 (Linux; Android 8.0.0; Pixel 2 XL Build/OPD1.170816.004) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/141.0.7390.
|
|
1497
|
+
"userAgent": "Mozilla/5.0 (Linux; Android 8.0.0; Pixel 2 XL Build/OPD1.170816.004) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/141.0.7390.16 Mobile Safari/537.36",
|
|
1498
1498
|
"viewport": {
|
|
1499
1499
|
"width": 411,
|
|
1500
1500
|
"height": 823
|
|
@@ -1505,7 +1505,7 @@
|
|
|
1505
1505
|
"defaultBrowserType": "chromium"
|
|
1506
1506
|
},
|
|
1507
1507
|
"Pixel 2 XL landscape": {
|
|
1508
|
-
"userAgent": "Mozilla/5.0 (Linux; Android 8.0.0; Pixel 2 XL Build/OPD1.170816.004) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/141.0.7390.
|
|
1508
|
+
"userAgent": "Mozilla/5.0 (Linux; Android 8.0.0; Pixel 2 XL Build/OPD1.170816.004) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/141.0.7390.16 Mobile Safari/537.36",
|
|
1509
1509
|
"viewport": {
|
|
1510
1510
|
"width": 823,
|
|
1511
1511
|
"height": 411
|
|
@@ -1516,7 +1516,7 @@
|
|
|
1516
1516
|
"defaultBrowserType": "chromium"
|
|
1517
1517
|
},
|
|
1518
1518
|
"Pixel 3": {
|
|
1519
|
-
"userAgent": "Mozilla/5.0 (Linux; Android 9; Pixel 3 Build/PQ1A.181105.017.A1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/141.0.7390.
|
|
1519
|
+
"userAgent": "Mozilla/5.0 (Linux; Android 9; Pixel 3 Build/PQ1A.181105.017.A1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/141.0.7390.16 Mobile Safari/537.36",
|
|
1520
1520
|
"viewport": {
|
|
1521
1521
|
"width": 393,
|
|
1522
1522
|
"height": 786
|
|
@@ -1527,7 +1527,7 @@
|
|
|
1527
1527
|
"defaultBrowserType": "chromium"
|
|
1528
1528
|
},
|
|
1529
1529
|
"Pixel 3 landscape": {
|
|
1530
|
-
"userAgent": "Mozilla/5.0 (Linux; Android 9; Pixel 3 Build/PQ1A.181105.017.A1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/141.0.7390.
|
|
1530
|
+
"userAgent": "Mozilla/5.0 (Linux; Android 9; Pixel 3 Build/PQ1A.181105.017.A1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/141.0.7390.16 Mobile Safari/537.36",
|
|
1531
1531
|
"viewport": {
|
|
1532
1532
|
"width": 786,
|
|
1533
1533
|
"height": 393
|
|
@@ -1538,7 +1538,7 @@
|
|
|
1538
1538
|
"defaultBrowserType": "chromium"
|
|
1539
1539
|
},
|
|
1540
1540
|
"Pixel 4": {
|
|
1541
|
-
"userAgent": "Mozilla/5.0 (Linux; Android 10; Pixel 4) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/141.0.7390.
|
|
1541
|
+
"userAgent": "Mozilla/5.0 (Linux; Android 10; Pixel 4) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/141.0.7390.16 Mobile Safari/537.36",
|
|
1542
1542
|
"viewport": {
|
|
1543
1543
|
"width": 353,
|
|
1544
1544
|
"height": 745
|
|
@@ -1549,7 +1549,7 @@
|
|
|
1549
1549
|
"defaultBrowserType": "chromium"
|
|
1550
1550
|
},
|
|
1551
1551
|
"Pixel 4 landscape": {
|
|
1552
|
-
"userAgent": "Mozilla/5.0 (Linux; Android 10; Pixel 4) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/141.0.7390.
|
|
1552
|
+
"userAgent": "Mozilla/5.0 (Linux; Android 10; Pixel 4) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/141.0.7390.16 Mobile Safari/537.36",
|
|
1553
1553
|
"viewport": {
|
|
1554
1554
|
"width": 745,
|
|
1555
1555
|
"height": 353
|
|
@@ -1560,7 +1560,7 @@
|
|
|
1560
1560
|
"defaultBrowserType": "chromium"
|
|
1561
1561
|
},
|
|
1562
1562
|
"Pixel 4a (5G)": {
|
|
1563
|
-
"userAgent": "Mozilla/5.0 (Linux; Android 11; Pixel 4a (5G)) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/141.0.7390.
|
|
1563
|
+
"userAgent": "Mozilla/5.0 (Linux; Android 11; Pixel 4a (5G)) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/141.0.7390.16 Mobile Safari/537.36",
|
|
1564
1564
|
"screen": {
|
|
1565
1565
|
"width": 412,
|
|
1566
1566
|
"height": 892
|
|
@@ -1575,7 +1575,7 @@
|
|
|
1575
1575
|
"defaultBrowserType": "chromium"
|
|
1576
1576
|
},
|
|
1577
1577
|
"Pixel 4a (5G) landscape": {
|
|
1578
|
-
"userAgent": "Mozilla/5.0 (Linux; Android 11; Pixel 4a (5G)) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/141.0.7390.
|
|
1578
|
+
"userAgent": "Mozilla/5.0 (Linux; Android 11; Pixel 4a (5G)) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/141.0.7390.16 Mobile Safari/537.36",
|
|
1579
1579
|
"screen": {
|
|
1580
1580
|
"height": 892,
|
|
1581
1581
|
"width": 412
|
|
@@ -1590,7 +1590,7 @@
|
|
|
1590
1590
|
"defaultBrowserType": "chromium"
|
|
1591
1591
|
},
|
|
1592
1592
|
"Pixel 5": {
|
|
1593
|
-
"userAgent": "Mozilla/5.0 (Linux; Android 11; Pixel 5) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/141.0.7390.
|
|
1593
|
+
"userAgent": "Mozilla/5.0 (Linux; Android 11; Pixel 5) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/141.0.7390.16 Mobile Safari/537.36",
|
|
1594
1594
|
"screen": {
|
|
1595
1595
|
"width": 393,
|
|
1596
1596
|
"height": 851
|
|
@@ -1605,7 +1605,7 @@
|
|
|
1605
1605
|
"defaultBrowserType": "chromium"
|
|
1606
1606
|
},
|
|
1607
1607
|
"Pixel 5 landscape": {
|
|
1608
|
-
"userAgent": "Mozilla/5.0 (Linux; Android 11; Pixel 5) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/141.0.7390.
|
|
1608
|
+
"userAgent": "Mozilla/5.0 (Linux; Android 11; Pixel 5) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/141.0.7390.16 Mobile Safari/537.36",
|
|
1609
1609
|
"screen": {
|
|
1610
1610
|
"width": 851,
|
|
1611
1611
|
"height": 393
|
|
@@ -1620,7 +1620,7 @@
|
|
|
1620
1620
|
"defaultBrowserType": "chromium"
|
|
1621
1621
|
},
|
|
1622
1622
|
"Pixel 7": {
|
|
1623
|
-
"userAgent": "Mozilla/5.0 (Linux; Android 14; Pixel 7) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/141.0.7390.
|
|
1623
|
+
"userAgent": "Mozilla/5.0 (Linux; Android 14; Pixel 7) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/141.0.7390.16 Mobile Safari/537.36",
|
|
1624
1624
|
"screen": {
|
|
1625
1625
|
"width": 412,
|
|
1626
1626
|
"height": 915
|
|
@@ -1635,7 +1635,7 @@
|
|
|
1635
1635
|
"defaultBrowserType": "chromium"
|
|
1636
1636
|
},
|
|
1637
1637
|
"Pixel 7 landscape": {
|
|
1638
|
-
"userAgent": "Mozilla/5.0 (Linux; Android 14; Pixel 7) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/141.0.7390.
|
|
1638
|
+
"userAgent": "Mozilla/5.0 (Linux; Android 14; Pixel 7) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/141.0.7390.16 Mobile Safari/537.36",
|
|
1639
1639
|
"screen": {
|
|
1640
1640
|
"width": 915,
|
|
1641
1641
|
"height": 412
|
|
@@ -1650,7 +1650,7 @@
|
|
|
1650
1650
|
"defaultBrowserType": "chromium"
|
|
1651
1651
|
},
|
|
1652
1652
|
"Moto G4": {
|
|
1653
|
-
"userAgent": "Mozilla/5.0 (Linux; Android 7.0; Moto G (4)) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/141.0.7390.
|
|
1653
|
+
"userAgent": "Mozilla/5.0 (Linux; Android 7.0; Moto G (4)) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/141.0.7390.16 Mobile Safari/537.36",
|
|
1654
1654
|
"viewport": {
|
|
1655
1655
|
"width": 360,
|
|
1656
1656
|
"height": 640
|
|
@@ -1661,7 +1661,7 @@
|
|
|
1661
1661
|
"defaultBrowserType": "chromium"
|
|
1662
1662
|
},
|
|
1663
1663
|
"Moto G4 landscape": {
|
|
1664
|
-
"userAgent": "Mozilla/5.0 (Linux; Android 7.0; Moto G (4)) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/141.0.7390.
|
|
1664
|
+
"userAgent": "Mozilla/5.0 (Linux; Android 7.0; Moto G (4)) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/141.0.7390.16 Mobile Safari/537.36",
|
|
1665
1665
|
"viewport": {
|
|
1666
1666
|
"width": 640,
|
|
1667
1667
|
"height": 360
|
|
@@ -1672,7 +1672,7 @@
|
|
|
1672
1672
|
"defaultBrowserType": "chromium"
|
|
1673
1673
|
},
|
|
1674
1674
|
"Desktop Chrome HiDPI": {
|
|
1675
|
-
"userAgent": "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/141.0.7390.
|
|
1675
|
+
"userAgent": "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/141.0.7390.16 Safari/537.36",
|
|
1676
1676
|
"screen": {
|
|
1677
1677
|
"width": 1792,
|
|
1678
1678
|
"height": 1120
|
|
@@ -1687,7 +1687,7 @@
|
|
|
1687
1687
|
"defaultBrowserType": "chromium"
|
|
1688
1688
|
},
|
|
1689
1689
|
"Desktop Edge HiDPI": {
|
|
1690
|
-
"userAgent": "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/141.0.7390.
|
|
1690
|
+
"userAgent": "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/141.0.7390.16 Safari/537.36 Edg/141.0.7390.16",
|
|
1691
1691
|
"screen": {
|
|
1692
1692
|
"width": 1792,
|
|
1693
1693
|
"height": 1120
|
|
@@ -1702,7 +1702,7 @@
|
|
|
1702
1702
|
"defaultBrowserType": "chromium"
|
|
1703
1703
|
},
|
|
1704
1704
|
"Desktop Firefox HiDPI": {
|
|
1705
|
-
"userAgent": "Mozilla/5.0 (Windows NT 10.0; Win64; x64; rv:
|
|
1705
|
+
"userAgent": "Mozilla/5.0 (Windows NT 10.0; Win64; x64; rv:142.0.1) Gecko/20100101 Firefox/142.0.1",
|
|
1706
1706
|
"screen": {
|
|
1707
1707
|
"width": 1792,
|
|
1708
1708
|
"height": 1120
|
|
@@ -1732,7 +1732,7 @@
|
|
|
1732
1732
|
"defaultBrowserType": "webkit"
|
|
1733
1733
|
},
|
|
1734
1734
|
"Desktop Chrome": {
|
|
1735
|
-
"userAgent": "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/141.0.7390.
|
|
1735
|
+
"userAgent": "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/141.0.7390.16 Safari/537.36",
|
|
1736
1736
|
"screen": {
|
|
1737
1737
|
"width": 1920,
|
|
1738
1738
|
"height": 1080
|
|
@@ -1747,7 +1747,7 @@
|
|
|
1747
1747
|
"defaultBrowserType": "chromium"
|
|
1748
1748
|
},
|
|
1749
1749
|
"Desktop Edge": {
|
|
1750
|
-
"userAgent": "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/141.0.7390.
|
|
1750
|
+
"userAgent": "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/141.0.7390.16 Safari/537.36 Edg/141.0.7390.16",
|
|
1751
1751
|
"screen": {
|
|
1752
1752
|
"width": 1920,
|
|
1753
1753
|
"height": 1080
|
|
@@ -1762,7 +1762,7 @@
|
|
|
1762
1762
|
"defaultBrowserType": "chromium"
|
|
1763
1763
|
},
|
|
1764
1764
|
"Desktop Firefox": {
|
|
1765
|
-
"userAgent": "Mozilla/5.0 (Windows NT 10.0; Win64; x64; rv:
|
|
1765
|
+
"userAgent": "Mozilla/5.0 (Windows NT 10.0; Win64; x64; rv:142.0.1) Gecko/20100101 Firefox/142.0.1",
|
|
1766
1766
|
"screen": {
|
|
1767
1767
|
"width": 1920,
|
|
1768
1768
|
"height": 1080
|