browser-use 0.2.0 → 0.4.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/README.md +295 -686
- package/dist/actor/element.d.ts +19 -0
- package/dist/actor/element.js +46 -0
- package/dist/actor/index.d.ts +4 -0
- package/dist/actor/index.js +4 -0
- package/dist/actor/mouse.d.ts +19 -0
- package/dist/actor/mouse.js +39 -0
- package/dist/actor/page.d.ts +29 -0
- package/dist/actor/page.js +88 -0
- package/dist/actor/utils.d.ts +4 -0
- package/dist/actor/utils.js +35 -0
- package/dist/agent/cloud-events.d.ts +18 -0
- package/dist/agent/cloud-events.js +65 -2
- package/dist/agent/gif.d.ts +1 -0
- package/dist/agent/gif.js +24 -2
- package/dist/agent/judge.d.ts +17 -0
- package/dist/agent/judge.js +197 -0
- package/dist/agent/message-manager/service.d.ts +12 -4
- package/dist/agent/message-manager/service.js +205 -39
- package/dist/agent/message-manager/utils.js +0 -1
- package/dist/agent/message-manager/views.d.ts +4 -0
- package/dist/agent/message-manager/views.js +11 -7
- package/dist/agent/prompts.d.ts +24 -3
- package/dist/agent/prompts.js +274 -59
- package/dist/agent/service.d.ts +103 -41
- package/dist/agent/service.js +2336 -472
- package/dist/agent/variable-detector.d.ts +12 -0
- package/dist/agent/variable-detector.js +211 -0
- package/dist/agent/views.d.ts +237 -18
- package/dist/agent/views.js +446 -33
- package/dist/browser/cloud/cloud.d.ts +20 -0
- package/dist/browser/cloud/cloud.js +129 -0
- package/dist/browser/cloud/index.d.ts +2 -0
- package/dist/browser/cloud/index.js +2 -0
- package/dist/browser/cloud/views.d.ts +41 -0
- package/dist/browser/cloud/views.js +35 -0
- package/dist/browser/events.d.ts +345 -0
- package/dist/browser/events.js +566 -0
- package/dist/browser/extensions.js +17 -17
- package/dist/browser/index.d.ts +4 -0
- package/dist/browser/index.js +4 -0
- package/dist/browser/profile.d.ts +10 -4
- package/dist/browser/profile.js +79 -12
- package/dist/browser/session-manager.d.ts +85 -0
- package/dist/browser/session-manager.js +208 -0
- package/dist/browser/session.d.ts +105 -9
- package/dist/browser/session.js +1166 -95
- package/dist/browser/types.d.ts +153 -156
- package/dist/browser/views.d.ts +39 -0
- package/dist/browser/views.js +32 -0
- package/dist/browser/watchdogs/aboutblank-watchdog.d.ts +12 -0
- package/dist/browser/watchdogs/aboutblank-watchdog.js +131 -0
- package/dist/browser/watchdogs/base.d.ts +21 -0
- package/dist/browser/watchdogs/base.js +81 -0
- package/dist/browser/watchdogs/cdp-session-watchdog.d.ts +14 -0
- package/dist/browser/watchdogs/cdp-session-watchdog.js +177 -0
- package/dist/browser/watchdogs/crash-watchdog.d.ts +38 -0
- package/dist/browser/watchdogs/crash-watchdog.js +296 -0
- package/dist/browser/watchdogs/default-action-watchdog.d.ts +49 -0
- package/dist/browser/watchdogs/default-action-watchdog.js +212 -0
- package/dist/browser/watchdogs/dom-watchdog.d.ts +8 -0
- package/dist/browser/watchdogs/dom-watchdog.js +31 -0
- package/dist/browser/watchdogs/downloads-watchdog.d.ts +77 -0
- package/dist/browser/watchdogs/downloads-watchdog.js +409 -0
- package/dist/browser/watchdogs/har-recording-watchdog.d.ts +19 -0
- package/dist/browser/watchdogs/har-recording-watchdog.js +317 -0
- package/dist/browser/watchdogs/index.d.ts +15 -0
- package/dist/browser/watchdogs/index.js +15 -0
- package/dist/browser/watchdogs/local-browser-watchdog.d.ts +10 -0
- package/dist/browser/watchdogs/local-browser-watchdog.js +32 -0
- package/dist/browser/watchdogs/permissions-watchdog.d.ts +8 -0
- package/dist/browser/watchdogs/permissions-watchdog.js +73 -0
- package/dist/browser/watchdogs/popups-watchdog.d.ts +13 -0
- package/dist/browser/watchdogs/popups-watchdog.js +77 -0
- package/dist/browser/watchdogs/recording-watchdog.d.ts +27 -0
- package/dist/browser/watchdogs/recording-watchdog.js +249 -0
- package/dist/browser/watchdogs/screenshot-watchdog.d.ts +6 -0
- package/dist/browser/watchdogs/screenshot-watchdog.js +13 -0
- package/dist/browser/watchdogs/security-watchdog.d.ts +10 -0
- package/dist/browser/watchdogs/security-watchdog.js +84 -0
- package/dist/browser/watchdogs/storage-state-watchdog.d.ts +24 -0
- package/dist/browser/watchdogs/storage-state-watchdog.js +288 -0
- package/dist/cli.d.ts +7 -2
- package/dist/cli.js +182 -25
- package/dist/code-use/formatting.d.ts +3 -0
- package/dist/code-use/formatting.js +18 -0
- package/dist/code-use/index.d.ts +6 -0
- package/dist/code-use/index.js +6 -0
- package/dist/code-use/namespace.d.ts +5 -0
- package/dist/code-use/namespace.js +81 -0
- package/dist/code-use/notebook-export.d.ts +3 -0
- package/dist/code-use/notebook-export.js +56 -0
- package/dist/code-use/service.d.ts +24 -0
- package/dist/code-use/service.js +104 -0
- package/dist/code-use/utils.d.ts +4 -0
- package/dist/code-use/utils.js +98 -0
- package/dist/code-use/views.d.ts +108 -0
- package/dist/code-use/views.js +165 -0
- package/dist/config.d.ts +15 -0
- package/dist/config.js +109 -7
- package/dist/controller/registry/service.d.ts +10 -1
- package/dist/controller/registry/service.js +266 -10
- package/dist/controller/registry/views.d.ts +4 -1
- package/dist/controller/registry/views.js +25 -2
- package/dist/controller/service.d.ts +10 -1
- package/dist/controller/service.js +1814 -268
- package/dist/controller/views.d.ts +78 -155
- package/dist/controller/views.js +61 -12
- package/dist/dom/history-tree-processor/service.d.ts +5 -0
- package/dist/dom/history-tree-processor/service.js +169 -14
- package/dist/dom/history-tree-processor/view.d.ts +7 -1
- package/dist/dom/history-tree-processor/view.js +10 -1
- package/dist/dom/markdown-extractor.d.ts +37 -0
- package/dist/dom/markdown-extractor.js +345 -0
- package/dist/dom/service.d.ts +3 -1
- package/dist/dom/service.js +76 -0
- package/dist/dom/views.d.ts +1 -0
- package/dist/dom/views.js +45 -0
- package/dist/event-bus.d.ts +107 -7
- package/dist/event-bus.js +313 -10
- package/dist/exceptions.d.ts +0 -3
- package/dist/exceptions.js +0 -7
- package/dist/filesystem/file-system.d.ts +18 -0
- package/dist/filesystem/file-system.js +503 -42
- package/dist/index.d.ts +7 -0
- package/dist/index.js +6 -0
- package/dist/integrations/gmail/actions.d.ts +3 -3
- package/dist/integrations/gmail/actions.js +4 -4
- package/dist/llm/anthropic/chat.d.ts +18 -1
- package/dist/llm/anthropic/chat.js +123 -55
- package/dist/llm/anthropic/serializer.d.ts +2 -0
- package/dist/llm/anthropic/serializer.js +81 -9
- package/dist/llm/aws/chat-anthropic.d.ts +17 -0
- package/dist/llm/aws/chat-anthropic.js +126 -26
- package/dist/llm/aws/chat-bedrock.d.ts +28 -1
- package/dist/llm/aws/chat-bedrock.js +161 -34
- package/dist/llm/aws/serializer.d.ts +13 -1
- package/dist/llm/aws/serializer.js +56 -17
- package/dist/llm/azure/chat.d.ts +53 -2
- package/dist/llm/azure/chat.js +366 -54
- package/dist/llm/base.d.ts +2 -0
- package/dist/llm/browser-use/chat.d.ts +40 -0
- package/dist/llm/browser-use/chat.js +305 -0
- package/dist/llm/browser-use/index.d.ts +1 -0
- package/dist/llm/browser-use/index.js +1 -0
- package/dist/llm/cerebras/chat.d.ts +39 -0
- package/dist/llm/cerebras/chat.js +178 -0
- package/dist/llm/cerebras/index.d.ts +2 -0
- package/dist/llm/cerebras/index.js +2 -0
- package/dist/llm/cerebras/serializer.d.ts +7 -0
- package/dist/llm/cerebras/serializer.js +82 -0
- package/dist/llm/deepseek/chat.d.ts +19 -2
- package/dist/llm/deepseek/chat.js +138 -25
- package/dist/llm/google/chat.d.ts +46 -2
- package/dist/llm/google/chat.js +267 -64
- package/dist/llm/google/serializer.d.ts +9 -1
- package/dist/llm/google/serializer.js +141 -34
- package/dist/llm/groq/chat.d.ts +21 -2
- package/dist/llm/groq/chat.js +125 -26
- package/dist/llm/groq/parser.js +3 -1
- package/dist/llm/mistral/chat.d.ts +43 -0
- package/dist/llm/mistral/chat.js +154 -0
- package/dist/llm/mistral/index.d.ts +2 -0
- package/dist/llm/mistral/index.js +2 -0
- package/dist/llm/mistral/schema.d.ts +8 -0
- package/dist/llm/mistral/schema.js +27 -0
- package/dist/llm/models.d.ts +2 -0
- package/dist/llm/models.js +317 -0
- package/dist/llm/ollama/chat.d.ts +13 -1
- package/dist/llm/ollama/chat.js +110 -19
- package/dist/llm/ollama/serializer.d.ts +1 -0
- package/dist/llm/ollama/serializer.js +34 -12
- package/dist/llm/openai/chat.d.ts +16 -0
- package/dist/llm/openai/chat.js +94 -44
- package/dist/llm/openai/like.d.ts +5 -3
- package/dist/llm/openai/like.js +7 -3
- package/dist/llm/openai/responses-serializer.d.ts +18 -0
- package/dist/llm/openai/responses-serializer.js +72 -0
- package/dist/llm/openrouter/chat.d.ts +28 -2
- package/dist/llm/openrouter/chat.js +115 -29
- package/dist/llm/schema.d.ts +11 -1
- package/dist/llm/schema.js +109 -4
- package/dist/llm/vercel/chat.d.ts +50 -0
- package/dist/llm/vercel/chat.js +276 -0
- package/dist/llm/vercel/index.d.ts +1 -0
- package/dist/llm/vercel/index.js +1 -0
- package/dist/llm/vercel/serializer.d.ts +5 -0
- package/dist/llm/vercel/serializer.js +7 -0
- package/dist/llm/views.d.ts +2 -1
- package/dist/llm/views.js +3 -1
- package/dist/logging-config.d.ts +2 -0
- package/dist/logging-config.js +82 -29
- package/dist/mcp/client.d.ts +10 -5
- package/dist/mcp/client.js +14 -9
- package/dist/mcp/controller.d.ts +42 -3
- package/dist/mcp/controller.js +56 -31
- package/dist/mcp/server.d.ts +15 -0
- package/dist/mcp/server.js +261 -52
- package/dist/observability.js +10 -4
- package/dist/sandbox/index.d.ts +2 -0
- package/dist/sandbox/index.js +2 -0
- package/dist/sandbox/sandbox.d.ts +19 -0
- package/dist/sandbox/sandbox.js +140 -0
- package/dist/sandbox/views.d.ts +67 -0
- package/dist/sandbox/views.js +121 -0
- package/dist/skill-cli/index.d.ts +3 -0
- package/dist/skill-cli/index.js +3 -0
- package/dist/skill-cli/protocol.d.ts +30 -0
- package/dist/skill-cli/protocol.js +48 -0
- package/dist/skill-cli/server.d.ts +11 -0
- package/dist/skill-cli/server.js +85 -0
- package/dist/skill-cli/sessions.d.ts +24 -0
- package/dist/skill-cli/sessions.js +47 -0
- package/dist/skills/index.d.ts +3 -0
- package/dist/skills/index.js +3 -0
- package/dist/skills/service.d.ts +27 -0
- package/dist/skills/service.js +266 -0
- package/dist/skills/utils.d.ts +6 -0
- package/dist/skills/utils.js +53 -0
- package/dist/skills/views.d.ts +40 -0
- package/dist/skills/views.js +10 -0
- package/dist/sync/auth.js +8 -3
- package/dist/sync/service.d.ts +6 -6
- package/dist/sync/service.js +54 -89
- package/dist/telemetry/views.d.ts +20 -6
- package/dist/telemetry/views.js +23 -5
- package/dist/tokens/custom-pricing.d.ts +2 -0
- package/dist/tokens/custom-pricing.js +22 -0
- package/dist/tokens/index.d.ts +2 -0
- package/dist/tokens/index.js +2 -0
- package/dist/tokens/mappings.d.ts +1 -0
- package/dist/tokens/mappings.js +3 -0
- package/dist/tokens/service.js +27 -8
- package/dist/tools/extraction/index.d.ts +2 -0
- package/dist/tools/extraction/index.js +2 -0
- package/dist/tools/extraction/schema-utils.d.ts +6 -0
- package/dist/tools/extraction/schema-utils.js +237 -0
- package/dist/tools/extraction/views.d.ts +7 -0
- package/dist/tools/index.d.ts +5 -0
- package/dist/tools/index.js +5 -0
- package/dist/tools/registry/index.d.ts +2 -0
- package/dist/tools/registry/index.js +2 -0
- package/dist/tools/registry/service.d.ts +1 -0
- package/dist/tools/registry/service.js +1 -0
- package/dist/tools/registry/views.d.ts +1 -0
- package/dist/tools/registry/views.js +1 -0
- package/dist/tools/service.d.ts +2 -0
- package/dist/tools/service.js +1 -0
- package/dist/tools/utils.d.ts +2 -0
- package/dist/tools/utils.js +57 -0
- package/dist/tools/views.d.ts +1 -0
- package/dist/tools/views.js +1 -0
- package/dist/utils.d.ts +10 -1
- package/dist/utils.js +70 -3
- package/package.json +116 -49
- package/dist/dom/playground/process-dom.js +0 -5
- package/dist/dom/playground/test-accessibility.d.ts +0 -44
- package/dist/dom/playground/test-accessibility.js +0 -111
- /package/dist/{dom/playground/process-dom.d.ts → tools/extraction/views.js} +0 -0
package/dist/browser/types.d.ts
CHANGED
|
@@ -1,5 +1,4 @@
|
|
|
1
|
-
import type { Browser as PlaywrightBrowser, BrowserContext as PlaywrightBrowserContext, ElementHandle as PlaywrightElementHandle, FrameLocator as PlaywrightFrameLocator, Page as PlaywrightPage, Locator as PlaywrightLocator } from 'playwright';
|
|
2
|
-
import type { BrowserContextOptions, LaunchOptions } from 'playwright-core';
|
|
1
|
+
import type { Browser as PlaywrightBrowser, BrowserContextOptions, BrowserContext as PlaywrightBrowserContext, ElementHandle as PlaywrightElementHandle, FrameLocator as PlaywrightFrameLocator, LaunchOptions, Page as PlaywrightPage, Locator as PlaywrightLocator } from 'playwright';
|
|
3
2
|
export type Browser = PlaywrightBrowser;
|
|
4
3
|
export type BrowserContext = PlaywrightBrowserContext;
|
|
5
4
|
export type Page = PlaywrightPage;
|
|
@@ -11,10 +10,10 @@ export type Playwright = PlaywrightModule;
|
|
|
11
10
|
export type PlaywrightOrPatchright = PlaywrightModule;
|
|
12
11
|
export declare const async_playwright: () => Promise<{
|
|
13
12
|
default: typeof import("playwright");
|
|
14
|
-
errors: typeof import("playwright
|
|
13
|
+
errors: typeof import("playwright").errors;
|
|
15
14
|
devices: {
|
|
16
15
|
[key: string]: {
|
|
17
|
-
viewport: import("playwright
|
|
16
|
+
viewport: import("playwright").ViewportSize;
|
|
18
17
|
userAgent: string;
|
|
19
18
|
deviceScaleFactor: number;
|
|
20
19
|
isMobile: boolean;
|
|
@@ -22,7 +21,7 @@ export declare const async_playwright: () => Promise<{
|
|
|
22
21
|
defaultBrowserType: "chromium" | "firefox" | "webkit";
|
|
23
22
|
};
|
|
24
23
|
"Blackberry PlayBook": {
|
|
25
|
-
viewport: import("playwright
|
|
24
|
+
viewport: import("playwright").ViewportSize;
|
|
26
25
|
userAgent: string;
|
|
27
26
|
deviceScaleFactor: number;
|
|
28
27
|
isMobile: boolean;
|
|
@@ -30,7 +29,7 @@ export declare const async_playwright: () => Promise<{
|
|
|
30
29
|
defaultBrowserType: "chromium" | "firefox" | "webkit";
|
|
31
30
|
};
|
|
32
31
|
"Blackberry PlayBook landscape": {
|
|
33
|
-
viewport: import("playwright
|
|
32
|
+
viewport: import("playwright").ViewportSize;
|
|
34
33
|
userAgent: string;
|
|
35
34
|
deviceScaleFactor: number;
|
|
36
35
|
isMobile: boolean;
|
|
@@ -38,7 +37,7 @@ export declare const async_playwright: () => Promise<{
|
|
|
38
37
|
defaultBrowserType: "chromium" | "firefox" | "webkit";
|
|
39
38
|
};
|
|
40
39
|
"BlackBerry Z30": {
|
|
41
|
-
viewport: import("playwright
|
|
40
|
+
viewport: import("playwright").ViewportSize;
|
|
42
41
|
userAgent: string;
|
|
43
42
|
deviceScaleFactor: number;
|
|
44
43
|
isMobile: boolean;
|
|
@@ -46,7 +45,7 @@ export declare const async_playwright: () => Promise<{
|
|
|
46
45
|
defaultBrowserType: "chromium" | "firefox" | "webkit";
|
|
47
46
|
};
|
|
48
47
|
"BlackBerry Z30 landscape": {
|
|
49
|
-
viewport: import("playwright
|
|
48
|
+
viewport: import("playwright").ViewportSize;
|
|
50
49
|
userAgent: string;
|
|
51
50
|
deviceScaleFactor: number;
|
|
52
51
|
isMobile: boolean;
|
|
@@ -54,7 +53,7 @@ export declare const async_playwright: () => Promise<{
|
|
|
54
53
|
defaultBrowserType: "chromium" | "firefox" | "webkit";
|
|
55
54
|
};
|
|
56
55
|
"Galaxy Note 3": {
|
|
57
|
-
viewport: import("playwright
|
|
56
|
+
viewport: import("playwright").ViewportSize;
|
|
58
57
|
userAgent: string;
|
|
59
58
|
deviceScaleFactor: number;
|
|
60
59
|
isMobile: boolean;
|
|
@@ -62,7 +61,7 @@ export declare const async_playwright: () => Promise<{
|
|
|
62
61
|
defaultBrowserType: "chromium" | "firefox" | "webkit";
|
|
63
62
|
};
|
|
64
63
|
"Galaxy Note 3 landscape": {
|
|
65
|
-
viewport: import("playwright
|
|
64
|
+
viewport: import("playwright").ViewportSize;
|
|
66
65
|
userAgent: string;
|
|
67
66
|
deviceScaleFactor: number;
|
|
68
67
|
isMobile: boolean;
|
|
@@ -70,7 +69,7 @@ export declare const async_playwright: () => Promise<{
|
|
|
70
69
|
defaultBrowserType: "chromium" | "firefox" | "webkit";
|
|
71
70
|
};
|
|
72
71
|
"Galaxy Note II": {
|
|
73
|
-
viewport: import("playwright
|
|
72
|
+
viewport: import("playwright").ViewportSize;
|
|
74
73
|
userAgent: string;
|
|
75
74
|
deviceScaleFactor: number;
|
|
76
75
|
isMobile: boolean;
|
|
@@ -78,7 +77,7 @@ export declare const async_playwright: () => Promise<{
|
|
|
78
77
|
defaultBrowserType: "chromium" | "firefox" | "webkit";
|
|
79
78
|
};
|
|
80
79
|
"Galaxy Note II landscape": {
|
|
81
|
-
viewport: import("playwright
|
|
80
|
+
viewport: import("playwright").ViewportSize;
|
|
82
81
|
userAgent: string;
|
|
83
82
|
deviceScaleFactor: number;
|
|
84
83
|
isMobile: boolean;
|
|
@@ -86,7 +85,7 @@ export declare const async_playwright: () => Promise<{
|
|
|
86
85
|
defaultBrowserType: "chromium" | "firefox" | "webkit";
|
|
87
86
|
};
|
|
88
87
|
"Galaxy S III": {
|
|
89
|
-
viewport: import("playwright
|
|
88
|
+
viewport: import("playwright").ViewportSize;
|
|
90
89
|
userAgent: string;
|
|
91
90
|
deviceScaleFactor: number;
|
|
92
91
|
isMobile: boolean;
|
|
@@ -94,7 +93,7 @@ export declare const async_playwright: () => Promise<{
|
|
|
94
93
|
defaultBrowserType: "chromium" | "firefox" | "webkit";
|
|
95
94
|
};
|
|
96
95
|
"Galaxy S III landscape": {
|
|
97
|
-
viewport: import("playwright
|
|
96
|
+
viewport: import("playwright").ViewportSize;
|
|
98
97
|
userAgent: string;
|
|
99
98
|
deviceScaleFactor: number;
|
|
100
99
|
isMobile: boolean;
|
|
@@ -102,7 +101,7 @@ export declare const async_playwright: () => Promise<{
|
|
|
102
101
|
defaultBrowserType: "chromium" | "firefox" | "webkit";
|
|
103
102
|
};
|
|
104
103
|
"Galaxy S5": {
|
|
105
|
-
viewport: import("playwright
|
|
104
|
+
viewport: import("playwright").ViewportSize;
|
|
106
105
|
userAgent: string;
|
|
107
106
|
deviceScaleFactor: number;
|
|
108
107
|
isMobile: boolean;
|
|
@@ -110,7 +109,7 @@ export declare const async_playwright: () => Promise<{
|
|
|
110
109
|
defaultBrowserType: "chromium" | "firefox" | "webkit";
|
|
111
110
|
};
|
|
112
111
|
"Galaxy S5 landscape": {
|
|
113
|
-
viewport: import("playwright
|
|
112
|
+
viewport: import("playwright").ViewportSize;
|
|
114
113
|
userAgent: string;
|
|
115
114
|
deviceScaleFactor: number;
|
|
116
115
|
isMobile: boolean;
|
|
@@ -118,7 +117,7 @@ export declare const async_playwright: () => Promise<{
|
|
|
118
117
|
defaultBrowserType: "chromium" | "firefox" | "webkit";
|
|
119
118
|
};
|
|
120
119
|
"Galaxy S8": {
|
|
121
|
-
viewport: import("playwright
|
|
120
|
+
viewport: import("playwright").ViewportSize;
|
|
122
121
|
userAgent: string;
|
|
123
122
|
deviceScaleFactor: number;
|
|
124
123
|
isMobile: boolean;
|
|
@@ -126,7 +125,7 @@ export declare const async_playwright: () => Promise<{
|
|
|
126
125
|
defaultBrowserType: "chromium" | "firefox" | "webkit";
|
|
127
126
|
};
|
|
128
127
|
"Galaxy S8 landscape": {
|
|
129
|
-
viewport: import("playwright
|
|
128
|
+
viewport: import("playwright").ViewportSize;
|
|
130
129
|
userAgent: string;
|
|
131
130
|
deviceScaleFactor: number;
|
|
132
131
|
isMobile: boolean;
|
|
@@ -134,7 +133,7 @@ export declare const async_playwright: () => Promise<{
|
|
|
134
133
|
defaultBrowserType: "chromium" | "firefox" | "webkit";
|
|
135
134
|
};
|
|
136
135
|
"Galaxy S9+": {
|
|
137
|
-
viewport: import("playwright
|
|
136
|
+
viewport: import("playwright").ViewportSize;
|
|
138
137
|
userAgent: string;
|
|
139
138
|
deviceScaleFactor: number;
|
|
140
139
|
isMobile: boolean;
|
|
@@ -142,7 +141,7 @@ export declare const async_playwright: () => Promise<{
|
|
|
142
141
|
defaultBrowserType: "chromium" | "firefox" | "webkit";
|
|
143
142
|
};
|
|
144
143
|
"Galaxy S9+ landscape": {
|
|
145
|
-
viewport: import("playwright
|
|
144
|
+
viewport: import("playwright").ViewportSize;
|
|
146
145
|
userAgent: string;
|
|
147
146
|
deviceScaleFactor: number;
|
|
148
147
|
isMobile: boolean;
|
|
@@ -150,7 +149,7 @@ export declare const async_playwright: () => Promise<{
|
|
|
150
149
|
defaultBrowserType: "chromium" | "firefox" | "webkit";
|
|
151
150
|
};
|
|
152
151
|
"Galaxy S24": {
|
|
153
|
-
viewport: import("playwright
|
|
152
|
+
viewport: import("playwright").ViewportSize;
|
|
154
153
|
userAgent: string;
|
|
155
154
|
deviceScaleFactor: number;
|
|
156
155
|
isMobile: boolean;
|
|
@@ -158,7 +157,7 @@ export declare const async_playwright: () => Promise<{
|
|
|
158
157
|
defaultBrowserType: "chromium" | "firefox" | "webkit";
|
|
159
158
|
};
|
|
160
159
|
"Galaxy S24 landscape": {
|
|
161
|
-
viewport: import("playwright
|
|
160
|
+
viewport: import("playwright").ViewportSize;
|
|
162
161
|
userAgent: string;
|
|
163
162
|
deviceScaleFactor: number;
|
|
164
163
|
isMobile: boolean;
|
|
@@ -166,7 +165,7 @@ export declare const async_playwright: () => Promise<{
|
|
|
166
165
|
defaultBrowserType: "chromium" | "firefox" | "webkit";
|
|
167
166
|
};
|
|
168
167
|
"Galaxy A55": {
|
|
169
|
-
viewport: import("playwright
|
|
168
|
+
viewport: import("playwright").ViewportSize;
|
|
170
169
|
userAgent: string;
|
|
171
170
|
deviceScaleFactor: number;
|
|
172
171
|
isMobile: boolean;
|
|
@@ -174,7 +173,7 @@ export declare const async_playwright: () => Promise<{
|
|
|
174
173
|
defaultBrowserType: "chromium" | "firefox" | "webkit";
|
|
175
174
|
};
|
|
176
175
|
"Galaxy A55 landscape": {
|
|
177
|
-
viewport: import("playwright
|
|
176
|
+
viewport: import("playwright").ViewportSize;
|
|
178
177
|
userAgent: string;
|
|
179
178
|
deviceScaleFactor: number;
|
|
180
179
|
isMobile: boolean;
|
|
@@ -182,7 +181,7 @@ export declare const async_playwright: () => Promise<{
|
|
|
182
181
|
defaultBrowserType: "chromium" | "firefox" | "webkit";
|
|
183
182
|
};
|
|
184
183
|
"Galaxy Tab S4": {
|
|
185
|
-
viewport: import("playwright
|
|
184
|
+
viewport: import("playwright").ViewportSize;
|
|
186
185
|
userAgent: string;
|
|
187
186
|
deviceScaleFactor: number;
|
|
188
187
|
isMobile: boolean;
|
|
@@ -190,7 +189,7 @@ export declare const async_playwright: () => Promise<{
|
|
|
190
189
|
defaultBrowserType: "chromium" | "firefox" | "webkit";
|
|
191
190
|
};
|
|
192
191
|
"Galaxy Tab S4 landscape": {
|
|
193
|
-
viewport: import("playwright
|
|
192
|
+
viewport: import("playwright").ViewportSize;
|
|
194
193
|
userAgent: string;
|
|
195
194
|
deviceScaleFactor: number;
|
|
196
195
|
isMobile: boolean;
|
|
@@ -198,7 +197,7 @@ export declare const async_playwright: () => Promise<{
|
|
|
198
197
|
defaultBrowserType: "chromium" | "firefox" | "webkit";
|
|
199
198
|
};
|
|
200
199
|
"Galaxy Tab S9": {
|
|
201
|
-
viewport: import("playwright
|
|
200
|
+
viewport: import("playwright").ViewportSize;
|
|
202
201
|
userAgent: string;
|
|
203
202
|
deviceScaleFactor: number;
|
|
204
203
|
isMobile: boolean;
|
|
@@ -206,7 +205,7 @@ export declare const async_playwright: () => Promise<{
|
|
|
206
205
|
defaultBrowserType: "chromium" | "firefox" | "webkit";
|
|
207
206
|
};
|
|
208
207
|
"Galaxy Tab S9 landscape": {
|
|
209
|
-
viewport: import("playwright
|
|
208
|
+
viewport: import("playwright").ViewportSize;
|
|
210
209
|
userAgent: string;
|
|
211
210
|
deviceScaleFactor: number;
|
|
212
211
|
isMobile: boolean;
|
|
@@ -214,7 +213,7 @@ export declare const async_playwright: () => Promise<{
|
|
|
214
213
|
defaultBrowserType: "chromium" | "firefox" | "webkit";
|
|
215
214
|
};
|
|
216
215
|
"iPad (gen 5)": {
|
|
217
|
-
viewport: import("playwright
|
|
216
|
+
viewport: import("playwright").ViewportSize;
|
|
218
217
|
userAgent: string;
|
|
219
218
|
deviceScaleFactor: number;
|
|
220
219
|
isMobile: boolean;
|
|
@@ -222,7 +221,7 @@ export declare const async_playwright: () => Promise<{
|
|
|
222
221
|
defaultBrowserType: "chromium" | "firefox" | "webkit";
|
|
223
222
|
};
|
|
224
223
|
"iPad (gen 5) landscape": {
|
|
225
|
-
viewport: import("playwright
|
|
224
|
+
viewport: import("playwright").ViewportSize;
|
|
226
225
|
userAgent: string;
|
|
227
226
|
deviceScaleFactor: number;
|
|
228
227
|
isMobile: boolean;
|
|
@@ -230,7 +229,7 @@ export declare const async_playwright: () => Promise<{
|
|
|
230
229
|
defaultBrowserType: "chromium" | "firefox" | "webkit";
|
|
231
230
|
};
|
|
232
231
|
"iPad (gen 6)": {
|
|
233
|
-
viewport: import("playwright
|
|
232
|
+
viewport: import("playwright").ViewportSize;
|
|
234
233
|
userAgent: string;
|
|
235
234
|
deviceScaleFactor: number;
|
|
236
235
|
isMobile: boolean;
|
|
@@ -238,7 +237,7 @@ export declare const async_playwright: () => Promise<{
|
|
|
238
237
|
defaultBrowserType: "chromium" | "firefox" | "webkit";
|
|
239
238
|
};
|
|
240
239
|
"iPad (gen 6) landscape": {
|
|
241
|
-
viewport: import("playwright
|
|
240
|
+
viewport: import("playwright").ViewportSize;
|
|
242
241
|
userAgent: string;
|
|
243
242
|
deviceScaleFactor: number;
|
|
244
243
|
isMobile: boolean;
|
|
@@ -246,7 +245,7 @@ export declare const async_playwright: () => Promise<{
|
|
|
246
245
|
defaultBrowserType: "chromium" | "firefox" | "webkit";
|
|
247
246
|
};
|
|
248
247
|
"iPad (gen 7)": {
|
|
249
|
-
viewport: import("playwright
|
|
248
|
+
viewport: import("playwright").ViewportSize;
|
|
250
249
|
userAgent: string;
|
|
251
250
|
deviceScaleFactor: number;
|
|
252
251
|
isMobile: boolean;
|
|
@@ -254,7 +253,7 @@ export declare const async_playwright: () => Promise<{
|
|
|
254
253
|
defaultBrowserType: "chromium" | "firefox" | "webkit";
|
|
255
254
|
};
|
|
256
255
|
"iPad (gen 7) landscape": {
|
|
257
|
-
viewport: import("playwright
|
|
256
|
+
viewport: import("playwright").ViewportSize;
|
|
258
257
|
userAgent: string;
|
|
259
258
|
deviceScaleFactor: number;
|
|
260
259
|
isMobile: boolean;
|
|
@@ -262,7 +261,7 @@ export declare const async_playwright: () => Promise<{
|
|
|
262
261
|
defaultBrowserType: "chromium" | "firefox" | "webkit";
|
|
263
262
|
};
|
|
264
263
|
"iPad (gen 11)": {
|
|
265
|
-
viewport: import("playwright
|
|
264
|
+
viewport: import("playwright").ViewportSize;
|
|
266
265
|
userAgent: string;
|
|
267
266
|
deviceScaleFactor: number;
|
|
268
267
|
isMobile: boolean;
|
|
@@ -270,7 +269,7 @@ export declare const async_playwright: () => Promise<{
|
|
|
270
269
|
defaultBrowserType: "chromium" | "firefox" | "webkit";
|
|
271
270
|
};
|
|
272
271
|
"iPad (gen 11) landscape": {
|
|
273
|
-
viewport: import("playwright
|
|
272
|
+
viewport: import("playwright").ViewportSize;
|
|
274
273
|
userAgent: string;
|
|
275
274
|
deviceScaleFactor: number;
|
|
276
275
|
isMobile: boolean;
|
|
@@ -278,7 +277,7 @@ export declare const async_playwright: () => Promise<{
|
|
|
278
277
|
defaultBrowserType: "chromium" | "firefox" | "webkit";
|
|
279
278
|
};
|
|
280
279
|
"iPad Mini": {
|
|
281
|
-
viewport: import("playwright
|
|
280
|
+
viewport: import("playwright").ViewportSize;
|
|
282
281
|
userAgent: string;
|
|
283
282
|
deviceScaleFactor: number;
|
|
284
283
|
isMobile: boolean;
|
|
@@ -286,7 +285,7 @@ export declare const async_playwright: () => Promise<{
|
|
|
286
285
|
defaultBrowserType: "chromium" | "firefox" | "webkit";
|
|
287
286
|
};
|
|
288
287
|
"iPad Mini landscape": {
|
|
289
|
-
viewport: import("playwright
|
|
288
|
+
viewport: import("playwright").ViewportSize;
|
|
290
289
|
userAgent: string;
|
|
291
290
|
deviceScaleFactor: number;
|
|
292
291
|
isMobile: boolean;
|
|
@@ -294,7 +293,7 @@ export declare const async_playwright: () => Promise<{
|
|
|
294
293
|
defaultBrowserType: "chromium" | "firefox" | "webkit";
|
|
295
294
|
};
|
|
296
295
|
"iPad Pro 11": {
|
|
297
|
-
viewport: import("playwright
|
|
296
|
+
viewport: import("playwright").ViewportSize;
|
|
298
297
|
userAgent: string;
|
|
299
298
|
deviceScaleFactor: number;
|
|
300
299
|
isMobile: boolean;
|
|
@@ -302,7 +301,7 @@ export declare const async_playwright: () => Promise<{
|
|
|
302
301
|
defaultBrowserType: "chromium" | "firefox" | "webkit";
|
|
303
302
|
};
|
|
304
303
|
"iPad Pro 11 landscape": {
|
|
305
|
-
viewport: import("playwright
|
|
304
|
+
viewport: import("playwright").ViewportSize;
|
|
306
305
|
userAgent: string;
|
|
307
306
|
deviceScaleFactor: number;
|
|
308
307
|
isMobile: boolean;
|
|
@@ -310,7 +309,7 @@ export declare const async_playwright: () => Promise<{
|
|
|
310
309
|
defaultBrowserType: "chromium" | "firefox" | "webkit";
|
|
311
310
|
};
|
|
312
311
|
"iPhone 6": {
|
|
313
|
-
viewport: import("playwright
|
|
312
|
+
viewport: import("playwright").ViewportSize;
|
|
314
313
|
userAgent: string;
|
|
315
314
|
deviceScaleFactor: number;
|
|
316
315
|
isMobile: boolean;
|
|
@@ -318,7 +317,7 @@ export declare const async_playwright: () => Promise<{
|
|
|
318
317
|
defaultBrowserType: "chromium" | "firefox" | "webkit";
|
|
319
318
|
};
|
|
320
319
|
"iPhone 6 landscape": {
|
|
321
|
-
viewport: import("playwright
|
|
320
|
+
viewport: import("playwright").ViewportSize;
|
|
322
321
|
userAgent: string;
|
|
323
322
|
deviceScaleFactor: number;
|
|
324
323
|
isMobile: boolean;
|
|
@@ -326,7 +325,7 @@ export declare const async_playwright: () => Promise<{
|
|
|
326
325
|
defaultBrowserType: "chromium" | "firefox" | "webkit";
|
|
327
326
|
};
|
|
328
327
|
"iPhone 6 Plus": {
|
|
329
|
-
viewport: import("playwright
|
|
328
|
+
viewport: import("playwright").ViewportSize;
|
|
330
329
|
userAgent: string;
|
|
331
330
|
deviceScaleFactor: number;
|
|
332
331
|
isMobile: boolean;
|
|
@@ -334,7 +333,7 @@ export declare const async_playwright: () => Promise<{
|
|
|
334
333
|
defaultBrowserType: "chromium" | "firefox" | "webkit";
|
|
335
334
|
};
|
|
336
335
|
"iPhone 6 Plus landscape": {
|
|
337
|
-
viewport: import("playwright
|
|
336
|
+
viewport: import("playwright").ViewportSize;
|
|
338
337
|
userAgent: string;
|
|
339
338
|
deviceScaleFactor: number;
|
|
340
339
|
isMobile: boolean;
|
|
@@ -342,7 +341,7 @@ export declare const async_playwright: () => Promise<{
|
|
|
342
341
|
defaultBrowserType: "chromium" | "firefox" | "webkit";
|
|
343
342
|
};
|
|
344
343
|
"iPhone 7": {
|
|
345
|
-
viewport: import("playwright
|
|
344
|
+
viewport: import("playwright").ViewportSize;
|
|
346
345
|
userAgent: string;
|
|
347
346
|
deviceScaleFactor: number;
|
|
348
347
|
isMobile: boolean;
|
|
@@ -350,7 +349,7 @@ export declare const async_playwright: () => Promise<{
|
|
|
350
349
|
defaultBrowserType: "chromium" | "firefox" | "webkit";
|
|
351
350
|
};
|
|
352
351
|
"iPhone 7 landscape": {
|
|
353
|
-
viewport: import("playwright
|
|
352
|
+
viewport: import("playwright").ViewportSize;
|
|
354
353
|
userAgent: string;
|
|
355
354
|
deviceScaleFactor: number;
|
|
356
355
|
isMobile: boolean;
|
|
@@ -358,7 +357,7 @@ export declare const async_playwright: () => Promise<{
|
|
|
358
357
|
defaultBrowserType: "chromium" | "firefox" | "webkit";
|
|
359
358
|
};
|
|
360
359
|
"iPhone 7 Plus": {
|
|
361
|
-
viewport: import("playwright
|
|
360
|
+
viewport: import("playwright").ViewportSize;
|
|
362
361
|
userAgent: string;
|
|
363
362
|
deviceScaleFactor: number;
|
|
364
363
|
isMobile: boolean;
|
|
@@ -366,7 +365,7 @@ export declare const async_playwright: () => Promise<{
|
|
|
366
365
|
defaultBrowserType: "chromium" | "firefox" | "webkit";
|
|
367
366
|
};
|
|
368
367
|
"iPhone 7 Plus landscape": {
|
|
369
|
-
viewport: import("playwright
|
|
368
|
+
viewport: import("playwright").ViewportSize;
|
|
370
369
|
userAgent: string;
|
|
371
370
|
deviceScaleFactor: number;
|
|
372
371
|
isMobile: boolean;
|
|
@@ -374,7 +373,7 @@ export declare const async_playwright: () => Promise<{
|
|
|
374
373
|
defaultBrowserType: "chromium" | "firefox" | "webkit";
|
|
375
374
|
};
|
|
376
375
|
"iPhone 8": {
|
|
377
|
-
viewport: import("playwright
|
|
376
|
+
viewport: import("playwright").ViewportSize;
|
|
378
377
|
userAgent: string;
|
|
379
378
|
deviceScaleFactor: number;
|
|
380
379
|
isMobile: boolean;
|
|
@@ -382,7 +381,7 @@ export declare const async_playwright: () => Promise<{
|
|
|
382
381
|
defaultBrowserType: "chromium" | "firefox" | "webkit";
|
|
383
382
|
};
|
|
384
383
|
"iPhone 8 landscape": {
|
|
385
|
-
viewport: import("playwright
|
|
384
|
+
viewport: import("playwright").ViewportSize;
|
|
386
385
|
userAgent: string;
|
|
387
386
|
deviceScaleFactor: number;
|
|
388
387
|
isMobile: boolean;
|
|
@@ -390,7 +389,7 @@ export declare const async_playwright: () => Promise<{
|
|
|
390
389
|
defaultBrowserType: "chromium" | "firefox" | "webkit";
|
|
391
390
|
};
|
|
392
391
|
"iPhone 8 Plus": {
|
|
393
|
-
viewport: import("playwright
|
|
392
|
+
viewport: import("playwright").ViewportSize;
|
|
394
393
|
userAgent: string;
|
|
395
394
|
deviceScaleFactor: number;
|
|
396
395
|
isMobile: boolean;
|
|
@@ -398,7 +397,7 @@ export declare const async_playwright: () => Promise<{
|
|
|
398
397
|
defaultBrowserType: "chromium" | "firefox" | "webkit";
|
|
399
398
|
};
|
|
400
399
|
"iPhone 8 Plus landscape": {
|
|
401
|
-
viewport: import("playwright
|
|
400
|
+
viewport: import("playwright").ViewportSize;
|
|
402
401
|
userAgent: string;
|
|
403
402
|
deviceScaleFactor: number;
|
|
404
403
|
isMobile: boolean;
|
|
@@ -406,7 +405,7 @@ export declare const async_playwright: () => Promise<{
|
|
|
406
405
|
defaultBrowserType: "chromium" | "firefox" | "webkit";
|
|
407
406
|
};
|
|
408
407
|
"iPhone SE": {
|
|
409
|
-
viewport: import("playwright
|
|
408
|
+
viewport: import("playwright").ViewportSize;
|
|
410
409
|
userAgent: string;
|
|
411
410
|
deviceScaleFactor: number;
|
|
412
411
|
isMobile: boolean;
|
|
@@ -414,7 +413,7 @@ export declare const async_playwright: () => Promise<{
|
|
|
414
413
|
defaultBrowserType: "chromium" | "firefox" | "webkit";
|
|
415
414
|
};
|
|
416
415
|
"iPhone SE landscape": {
|
|
417
|
-
viewport: import("playwright
|
|
416
|
+
viewport: import("playwright").ViewportSize;
|
|
418
417
|
userAgent: string;
|
|
419
418
|
deviceScaleFactor: number;
|
|
420
419
|
isMobile: boolean;
|
|
@@ -422,7 +421,7 @@ export declare const async_playwright: () => Promise<{
|
|
|
422
421
|
defaultBrowserType: "chromium" | "firefox" | "webkit";
|
|
423
422
|
};
|
|
424
423
|
"iPhone SE (3rd gen)": {
|
|
425
|
-
viewport: import("playwright
|
|
424
|
+
viewport: import("playwright").ViewportSize;
|
|
426
425
|
userAgent: string;
|
|
427
426
|
deviceScaleFactor: number;
|
|
428
427
|
isMobile: boolean;
|
|
@@ -430,7 +429,7 @@ export declare const async_playwright: () => Promise<{
|
|
|
430
429
|
defaultBrowserType: "chromium" | "firefox" | "webkit";
|
|
431
430
|
};
|
|
432
431
|
"iPhone SE (3rd gen) landscape": {
|
|
433
|
-
viewport: import("playwright
|
|
432
|
+
viewport: import("playwright").ViewportSize;
|
|
434
433
|
userAgent: string;
|
|
435
434
|
deviceScaleFactor: number;
|
|
436
435
|
isMobile: boolean;
|
|
@@ -438,7 +437,7 @@ export declare const async_playwright: () => Promise<{
|
|
|
438
437
|
defaultBrowserType: "chromium" | "firefox" | "webkit";
|
|
439
438
|
};
|
|
440
439
|
"iPhone X": {
|
|
441
|
-
viewport: import("playwright
|
|
440
|
+
viewport: import("playwright").ViewportSize;
|
|
442
441
|
userAgent: string;
|
|
443
442
|
deviceScaleFactor: number;
|
|
444
443
|
isMobile: boolean;
|
|
@@ -446,7 +445,7 @@ export declare const async_playwright: () => Promise<{
|
|
|
446
445
|
defaultBrowserType: "chromium" | "firefox" | "webkit";
|
|
447
446
|
};
|
|
448
447
|
"iPhone X landscape": {
|
|
449
|
-
viewport: import("playwright
|
|
448
|
+
viewport: import("playwright").ViewportSize;
|
|
450
449
|
userAgent: string;
|
|
451
450
|
deviceScaleFactor: number;
|
|
452
451
|
isMobile: boolean;
|
|
@@ -454,7 +453,7 @@ export declare const async_playwright: () => Promise<{
|
|
|
454
453
|
defaultBrowserType: "chromium" | "firefox" | "webkit";
|
|
455
454
|
};
|
|
456
455
|
"iPhone XR": {
|
|
457
|
-
viewport: import("playwright
|
|
456
|
+
viewport: import("playwright").ViewportSize;
|
|
458
457
|
userAgent: string;
|
|
459
458
|
deviceScaleFactor: number;
|
|
460
459
|
isMobile: boolean;
|
|
@@ -462,7 +461,7 @@ export declare const async_playwright: () => Promise<{
|
|
|
462
461
|
defaultBrowserType: "chromium" | "firefox" | "webkit";
|
|
463
462
|
};
|
|
464
463
|
"iPhone XR landscape": {
|
|
465
|
-
viewport: import("playwright
|
|
464
|
+
viewport: import("playwright").ViewportSize;
|
|
466
465
|
userAgent: string;
|
|
467
466
|
deviceScaleFactor: number;
|
|
468
467
|
isMobile: boolean;
|
|
@@ -470,7 +469,7 @@ export declare const async_playwright: () => Promise<{
|
|
|
470
469
|
defaultBrowserType: "chromium" | "firefox" | "webkit";
|
|
471
470
|
};
|
|
472
471
|
"iPhone 11": {
|
|
473
|
-
viewport: import("playwright
|
|
472
|
+
viewport: import("playwright").ViewportSize;
|
|
474
473
|
userAgent: string;
|
|
475
474
|
deviceScaleFactor: number;
|
|
476
475
|
isMobile: boolean;
|
|
@@ -478,7 +477,7 @@ export declare const async_playwright: () => Promise<{
|
|
|
478
477
|
defaultBrowserType: "chromium" | "firefox" | "webkit";
|
|
479
478
|
};
|
|
480
479
|
"iPhone 11 landscape": {
|
|
481
|
-
viewport: import("playwright
|
|
480
|
+
viewport: import("playwright").ViewportSize;
|
|
482
481
|
userAgent: string;
|
|
483
482
|
deviceScaleFactor: number;
|
|
484
483
|
isMobile: boolean;
|
|
@@ -486,7 +485,7 @@ export declare const async_playwright: () => Promise<{
|
|
|
486
485
|
defaultBrowserType: "chromium" | "firefox" | "webkit";
|
|
487
486
|
};
|
|
488
487
|
"iPhone 11 Pro": {
|
|
489
|
-
viewport: import("playwright
|
|
488
|
+
viewport: import("playwright").ViewportSize;
|
|
490
489
|
userAgent: string;
|
|
491
490
|
deviceScaleFactor: number;
|
|
492
491
|
isMobile: boolean;
|
|
@@ -494,7 +493,7 @@ export declare const async_playwright: () => Promise<{
|
|
|
494
493
|
defaultBrowserType: "chromium" | "firefox" | "webkit";
|
|
495
494
|
};
|
|
496
495
|
"iPhone 11 Pro landscape": {
|
|
497
|
-
viewport: import("playwright
|
|
496
|
+
viewport: import("playwright").ViewportSize;
|
|
498
497
|
userAgent: string;
|
|
499
498
|
deviceScaleFactor: number;
|
|
500
499
|
isMobile: boolean;
|
|
@@ -502,7 +501,7 @@ export declare const async_playwright: () => Promise<{
|
|
|
502
501
|
defaultBrowserType: "chromium" | "firefox" | "webkit";
|
|
503
502
|
};
|
|
504
503
|
"iPhone 11 Pro Max": {
|
|
505
|
-
viewport: import("playwright
|
|
504
|
+
viewport: import("playwright").ViewportSize;
|
|
506
505
|
userAgent: string;
|
|
507
506
|
deviceScaleFactor: number;
|
|
508
507
|
isMobile: boolean;
|
|
@@ -510,7 +509,7 @@ export declare const async_playwright: () => Promise<{
|
|
|
510
509
|
defaultBrowserType: "chromium" | "firefox" | "webkit";
|
|
511
510
|
};
|
|
512
511
|
"iPhone 11 Pro Max landscape": {
|
|
513
|
-
viewport: import("playwright
|
|
512
|
+
viewport: import("playwright").ViewportSize;
|
|
514
513
|
userAgent: string;
|
|
515
514
|
deviceScaleFactor: number;
|
|
516
515
|
isMobile: boolean;
|
|
@@ -518,7 +517,7 @@ export declare const async_playwright: () => Promise<{
|
|
|
518
517
|
defaultBrowserType: "chromium" | "firefox" | "webkit";
|
|
519
518
|
};
|
|
520
519
|
"iPhone 12": {
|
|
521
|
-
viewport: import("playwright
|
|
520
|
+
viewport: import("playwright").ViewportSize;
|
|
522
521
|
userAgent: string;
|
|
523
522
|
deviceScaleFactor: number;
|
|
524
523
|
isMobile: boolean;
|
|
@@ -526,7 +525,7 @@ export declare const async_playwright: () => Promise<{
|
|
|
526
525
|
defaultBrowserType: "chromium" | "firefox" | "webkit";
|
|
527
526
|
};
|
|
528
527
|
"iPhone 12 landscape": {
|
|
529
|
-
viewport: import("playwright
|
|
528
|
+
viewport: import("playwright").ViewportSize;
|
|
530
529
|
userAgent: string;
|
|
531
530
|
deviceScaleFactor: number;
|
|
532
531
|
isMobile: boolean;
|
|
@@ -534,7 +533,7 @@ export declare const async_playwright: () => Promise<{
|
|
|
534
533
|
defaultBrowserType: "chromium" | "firefox" | "webkit";
|
|
535
534
|
};
|
|
536
535
|
"iPhone 12 Pro": {
|
|
537
|
-
viewport: import("playwright
|
|
536
|
+
viewport: import("playwright").ViewportSize;
|
|
538
537
|
userAgent: string;
|
|
539
538
|
deviceScaleFactor: number;
|
|
540
539
|
isMobile: boolean;
|
|
@@ -542,7 +541,7 @@ export declare const async_playwright: () => Promise<{
|
|
|
542
541
|
defaultBrowserType: "chromium" | "firefox" | "webkit";
|
|
543
542
|
};
|
|
544
543
|
"iPhone 12 Pro landscape": {
|
|
545
|
-
viewport: import("playwright
|
|
544
|
+
viewport: import("playwright").ViewportSize;
|
|
546
545
|
userAgent: string;
|
|
547
546
|
deviceScaleFactor: number;
|
|
548
547
|
isMobile: boolean;
|
|
@@ -550,7 +549,7 @@ export declare const async_playwright: () => Promise<{
|
|
|
550
549
|
defaultBrowserType: "chromium" | "firefox" | "webkit";
|
|
551
550
|
};
|
|
552
551
|
"iPhone 12 Pro Max": {
|
|
553
|
-
viewport: import("playwright
|
|
552
|
+
viewport: import("playwright").ViewportSize;
|
|
554
553
|
userAgent: string;
|
|
555
554
|
deviceScaleFactor: number;
|
|
556
555
|
isMobile: boolean;
|
|
@@ -558,7 +557,7 @@ export declare const async_playwright: () => Promise<{
|
|
|
558
557
|
defaultBrowserType: "chromium" | "firefox" | "webkit";
|
|
559
558
|
};
|
|
560
559
|
"iPhone 12 Pro Max landscape": {
|
|
561
|
-
viewport: import("playwright
|
|
560
|
+
viewport: import("playwright").ViewportSize;
|
|
562
561
|
userAgent: string;
|
|
563
562
|
deviceScaleFactor: number;
|
|
564
563
|
isMobile: boolean;
|
|
@@ -566,7 +565,7 @@ export declare const async_playwright: () => Promise<{
|
|
|
566
565
|
defaultBrowserType: "chromium" | "firefox" | "webkit";
|
|
567
566
|
};
|
|
568
567
|
"iPhone 12 Mini": {
|
|
569
|
-
viewport: import("playwright
|
|
568
|
+
viewport: import("playwright").ViewportSize;
|
|
570
569
|
userAgent: string;
|
|
571
570
|
deviceScaleFactor: number;
|
|
572
571
|
isMobile: boolean;
|
|
@@ -574,7 +573,7 @@ export declare const async_playwright: () => Promise<{
|
|
|
574
573
|
defaultBrowserType: "chromium" | "firefox" | "webkit";
|
|
575
574
|
};
|
|
576
575
|
"iPhone 12 Mini landscape": {
|
|
577
|
-
viewport: import("playwright
|
|
576
|
+
viewport: import("playwright").ViewportSize;
|
|
578
577
|
userAgent: string;
|
|
579
578
|
deviceScaleFactor: number;
|
|
580
579
|
isMobile: boolean;
|
|
@@ -582,7 +581,7 @@ export declare const async_playwright: () => Promise<{
|
|
|
582
581
|
defaultBrowserType: "chromium" | "firefox" | "webkit";
|
|
583
582
|
};
|
|
584
583
|
"iPhone 13": {
|
|
585
|
-
viewport: import("playwright
|
|
584
|
+
viewport: import("playwright").ViewportSize;
|
|
586
585
|
userAgent: string;
|
|
587
586
|
deviceScaleFactor: number;
|
|
588
587
|
isMobile: boolean;
|
|
@@ -590,7 +589,7 @@ export declare const async_playwright: () => Promise<{
|
|
|
590
589
|
defaultBrowserType: "chromium" | "firefox" | "webkit";
|
|
591
590
|
};
|
|
592
591
|
"iPhone 13 landscape": {
|
|
593
|
-
viewport: import("playwright
|
|
592
|
+
viewport: import("playwright").ViewportSize;
|
|
594
593
|
userAgent: string;
|
|
595
594
|
deviceScaleFactor: number;
|
|
596
595
|
isMobile: boolean;
|
|
@@ -598,7 +597,7 @@ export declare const async_playwright: () => Promise<{
|
|
|
598
597
|
defaultBrowserType: "chromium" | "firefox" | "webkit";
|
|
599
598
|
};
|
|
600
599
|
"iPhone 13 Pro": {
|
|
601
|
-
viewport: import("playwright
|
|
600
|
+
viewport: import("playwright").ViewportSize;
|
|
602
601
|
userAgent: string;
|
|
603
602
|
deviceScaleFactor: number;
|
|
604
603
|
isMobile: boolean;
|
|
@@ -606,7 +605,7 @@ export declare const async_playwright: () => Promise<{
|
|
|
606
605
|
defaultBrowserType: "chromium" | "firefox" | "webkit";
|
|
607
606
|
};
|
|
608
607
|
"iPhone 13 Pro landscape": {
|
|
609
|
-
viewport: import("playwright
|
|
608
|
+
viewport: import("playwright").ViewportSize;
|
|
610
609
|
userAgent: string;
|
|
611
610
|
deviceScaleFactor: number;
|
|
612
611
|
isMobile: boolean;
|
|
@@ -614,7 +613,7 @@ export declare const async_playwright: () => Promise<{
|
|
|
614
613
|
defaultBrowserType: "chromium" | "firefox" | "webkit";
|
|
615
614
|
};
|
|
616
615
|
"iPhone 13 Pro Max": {
|
|
617
|
-
viewport: import("playwright
|
|
616
|
+
viewport: import("playwright").ViewportSize;
|
|
618
617
|
userAgent: string;
|
|
619
618
|
deviceScaleFactor: number;
|
|
620
619
|
isMobile: boolean;
|
|
@@ -622,7 +621,7 @@ export declare const async_playwright: () => Promise<{
|
|
|
622
621
|
defaultBrowserType: "chromium" | "firefox" | "webkit";
|
|
623
622
|
};
|
|
624
623
|
"iPhone 13 Pro Max landscape": {
|
|
625
|
-
viewport: import("playwright
|
|
624
|
+
viewport: import("playwright").ViewportSize;
|
|
626
625
|
userAgent: string;
|
|
627
626
|
deviceScaleFactor: number;
|
|
628
627
|
isMobile: boolean;
|
|
@@ -630,7 +629,7 @@ export declare const async_playwright: () => Promise<{
|
|
|
630
629
|
defaultBrowserType: "chromium" | "firefox" | "webkit";
|
|
631
630
|
};
|
|
632
631
|
"iPhone 13 Mini": {
|
|
633
|
-
viewport: import("playwright
|
|
632
|
+
viewport: import("playwright").ViewportSize;
|
|
634
633
|
userAgent: string;
|
|
635
634
|
deviceScaleFactor: number;
|
|
636
635
|
isMobile: boolean;
|
|
@@ -638,7 +637,7 @@ export declare const async_playwright: () => Promise<{
|
|
|
638
637
|
defaultBrowserType: "chromium" | "firefox" | "webkit";
|
|
639
638
|
};
|
|
640
639
|
"iPhone 13 Mini landscape": {
|
|
641
|
-
viewport: import("playwright
|
|
640
|
+
viewport: import("playwright").ViewportSize;
|
|
642
641
|
userAgent: string;
|
|
643
642
|
deviceScaleFactor: number;
|
|
644
643
|
isMobile: boolean;
|
|
@@ -646,7 +645,7 @@ export declare const async_playwright: () => Promise<{
|
|
|
646
645
|
defaultBrowserType: "chromium" | "firefox" | "webkit";
|
|
647
646
|
};
|
|
648
647
|
"iPhone 14": {
|
|
649
|
-
viewport: import("playwright
|
|
648
|
+
viewport: import("playwright").ViewportSize;
|
|
650
649
|
userAgent: string;
|
|
651
650
|
deviceScaleFactor: number;
|
|
652
651
|
isMobile: boolean;
|
|
@@ -654,7 +653,7 @@ export declare const async_playwright: () => Promise<{
|
|
|
654
653
|
defaultBrowserType: "chromium" | "firefox" | "webkit";
|
|
655
654
|
};
|
|
656
655
|
"iPhone 14 landscape": {
|
|
657
|
-
viewport: import("playwright
|
|
656
|
+
viewport: import("playwright").ViewportSize;
|
|
658
657
|
userAgent: string;
|
|
659
658
|
deviceScaleFactor: number;
|
|
660
659
|
isMobile: boolean;
|
|
@@ -662,7 +661,7 @@ export declare const async_playwright: () => Promise<{
|
|
|
662
661
|
defaultBrowserType: "chromium" | "firefox" | "webkit";
|
|
663
662
|
};
|
|
664
663
|
"iPhone 14 Plus": {
|
|
665
|
-
viewport: import("playwright
|
|
664
|
+
viewport: import("playwright").ViewportSize;
|
|
666
665
|
userAgent: string;
|
|
667
666
|
deviceScaleFactor: number;
|
|
668
667
|
isMobile: boolean;
|
|
@@ -670,7 +669,7 @@ export declare const async_playwright: () => Promise<{
|
|
|
670
669
|
defaultBrowserType: "chromium" | "firefox" | "webkit";
|
|
671
670
|
};
|
|
672
671
|
"iPhone 14 Plus landscape": {
|
|
673
|
-
viewport: import("playwright
|
|
672
|
+
viewport: import("playwright").ViewportSize;
|
|
674
673
|
userAgent: string;
|
|
675
674
|
deviceScaleFactor: number;
|
|
676
675
|
isMobile: boolean;
|
|
@@ -678,7 +677,7 @@ export declare const async_playwright: () => Promise<{
|
|
|
678
677
|
defaultBrowserType: "chromium" | "firefox" | "webkit";
|
|
679
678
|
};
|
|
680
679
|
"iPhone 14 Pro": {
|
|
681
|
-
viewport: import("playwright
|
|
680
|
+
viewport: import("playwright").ViewportSize;
|
|
682
681
|
userAgent: string;
|
|
683
682
|
deviceScaleFactor: number;
|
|
684
683
|
isMobile: boolean;
|
|
@@ -686,7 +685,7 @@ export declare const async_playwright: () => Promise<{
|
|
|
686
685
|
defaultBrowserType: "chromium" | "firefox" | "webkit";
|
|
687
686
|
};
|
|
688
687
|
"iPhone 14 Pro landscape": {
|
|
689
|
-
viewport: import("playwright
|
|
688
|
+
viewport: import("playwright").ViewportSize;
|
|
690
689
|
userAgent: string;
|
|
691
690
|
deviceScaleFactor: number;
|
|
692
691
|
isMobile: boolean;
|
|
@@ -694,7 +693,7 @@ export declare const async_playwright: () => Promise<{
|
|
|
694
693
|
defaultBrowserType: "chromium" | "firefox" | "webkit";
|
|
695
694
|
};
|
|
696
695
|
"iPhone 14 Pro Max": {
|
|
697
|
-
viewport: import("playwright
|
|
696
|
+
viewport: import("playwright").ViewportSize;
|
|
698
697
|
userAgent: string;
|
|
699
698
|
deviceScaleFactor: number;
|
|
700
699
|
isMobile: boolean;
|
|
@@ -702,7 +701,7 @@ export declare const async_playwright: () => Promise<{
|
|
|
702
701
|
defaultBrowserType: "chromium" | "firefox" | "webkit";
|
|
703
702
|
};
|
|
704
703
|
"iPhone 14 Pro Max landscape": {
|
|
705
|
-
viewport: import("playwright
|
|
704
|
+
viewport: import("playwright").ViewportSize;
|
|
706
705
|
userAgent: string;
|
|
707
706
|
deviceScaleFactor: number;
|
|
708
707
|
isMobile: boolean;
|
|
@@ -710,7 +709,7 @@ export declare const async_playwright: () => Promise<{
|
|
|
710
709
|
defaultBrowserType: "chromium" | "firefox" | "webkit";
|
|
711
710
|
};
|
|
712
711
|
"iPhone 15": {
|
|
713
|
-
viewport: import("playwright
|
|
712
|
+
viewport: import("playwright").ViewportSize;
|
|
714
713
|
userAgent: string;
|
|
715
714
|
deviceScaleFactor: number;
|
|
716
715
|
isMobile: boolean;
|
|
@@ -718,7 +717,7 @@ export declare const async_playwright: () => Promise<{
|
|
|
718
717
|
defaultBrowserType: "chromium" | "firefox" | "webkit";
|
|
719
718
|
};
|
|
720
719
|
"iPhone 15 landscape": {
|
|
721
|
-
viewport: import("playwright
|
|
720
|
+
viewport: import("playwright").ViewportSize;
|
|
722
721
|
userAgent: string;
|
|
723
722
|
deviceScaleFactor: number;
|
|
724
723
|
isMobile: boolean;
|
|
@@ -726,7 +725,7 @@ export declare const async_playwright: () => Promise<{
|
|
|
726
725
|
defaultBrowserType: "chromium" | "firefox" | "webkit";
|
|
727
726
|
};
|
|
728
727
|
"iPhone 15 Plus": {
|
|
729
|
-
viewport: import("playwright
|
|
728
|
+
viewport: import("playwright").ViewportSize;
|
|
730
729
|
userAgent: string;
|
|
731
730
|
deviceScaleFactor: number;
|
|
732
731
|
isMobile: boolean;
|
|
@@ -734,7 +733,7 @@ export declare const async_playwright: () => Promise<{
|
|
|
734
733
|
defaultBrowserType: "chromium" | "firefox" | "webkit";
|
|
735
734
|
};
|
|
736
735
|
"iPhone 15 Plus landscape": {
|
|
737
|
-
viewport: import("playwright
|
|
736
|
+
viewport: import("playwright").ViewportSize;
|
|
738
737
|
userAgent: string;
|
|
739
738
|
deviceScaleFactor: number;
|
|
740
739
|
isMobile: boolean;
|
|
@@ -742,7 +741,7 @@ export declare const async_playwright: () => Promise<{
|
|
|
742
741
|
defaultBrowserType: "chromium" | "firefox" | "webkit";
|
|
743
742
|
};
|
|
744
743
|
"iPhone 15 Pro": {
|
|
745
|
-
viewport: import("playwright
|
|
744
|
+
viewport: import("playwright").ViewportSize;
|
|
746
745
|
userAgent: string;
|
|
747
746
|
deviceScaleFactor: number;
|
|
748
747
|
isMobile: boolean;
|
|
@@ -750,7 +749,7 @@ export declare const async_playwright: () => Promise<{
|
|
|
750
749
|
defaultBrowserType: "chromium" | "firefox" | "webkit";
|
|
751
750
|
};
|
|
752
751
|
"iPhone 15 Pro landscape": {
|
|
753
|
-
viewport: import("playwright
|
|
752
|
+
viewport: import("playwright").ViewportSize;
|
|
754
753
|
userAgent: string;
|
|
755
754
|
deviceScaleFactor: number;
|
|
756
755
|
isMobile: boolean;
|
|
@@ -758,7 +757,7 @@ export declare const async_playwright: () => Promise<{
|
|
|
758
757
|
defaultBrowserType: "chromium" | "firefox" | "webkit";
|
|
759
758
|
};
|
|
760
759
|
"iPhone 15 Pro Max": {
|
|
761
|
-
viewport: import("playwright
|
|
760
|
+
viewport: import("playwright").ViewportSize;
|
|
762
761
|
userAgent: string;
|
|
763
762
|
deviceScaleFactor: number;
|
|
764
763
|
isMobile: boolean;
|
|
@@ -766,7 +765,7 @@ export declare const async_playwright: () => Promise<{
|
|
|
766
765
|
defaultBrowserType: "chromium" | "firefox" | "webkit";
|
|
767
766
|
};
|
|
768
767
|
"iPhone 15 Pro Max landscape": {
|
|
769
|
-
viewport: import("playwright
|
|
768
|
+
viewport: import("playwright").ViewportSize;
|
|
770
769
|
userAgent: string;
|
|
771
770
|
deviceScaleFactor: number;
|
|
772
771
|
isMobile: boolean;
|
|
@@ -774,7 +773,7 @@ export declare const async_playwright: () => Promise<{
|
|
|
774
773
|
defaultBrowserType: "chromium" | "firefox" | "webkit";
|
|
775
774
|
};
|
|
776
775
|
"Kindle Fire HDX": {
|
|
777
|
-
viewport: import("playwright
|
|
776
|
+
viewport: import("playwright").ViewportSize;
|
|
778
777
|
userAgent: string;
|
|
779
778
|
deviceScaleFactor: number;
|
|
780
779
|
isMobile: boolean;
|
|
@@ -782,7 +781,7 @@ export declare const async_playwright: () => Promise<{
|
|
|
782
781
|
defaultBrowserType: "chromium" | "firefox" | "webkit";
|
|
783
782
|
};
|
|
784
783
|
"Kindle Fire HDX landscape": {
|
|
785
|
-
viewport: import("playwright
|
|
784
|
+
viewport: import("playwright").ViewportSize;
|
|
786
785
|
userAgent: string;
|
|
787
786
|
deviceScaleFactor: number;
|
|
788
787
|
isMobile: boolean;
|
|
@@ -790,7 +789,7 @@ export declare const async_playwright: () => Promise<{
|
|
|
790
789
|
defaultBrowserType: "chromium" | "firefox" | "webkit";
|
|
791
790
|
};
|
|
792
791
|
"LG Optimus L70": {
|
|
793
|
-
viewport: import("playwright
|
|
792
|
+
viewport: import("playwright").ViewportSize;
|
|
794
793
|
userAgent: string;
|
|
795
794
|
deviceScaleFactor: number;
|
|
796
795
|
isMobile: boolean;
|
|
@@ -798,7 +797,7 @@ export declare const async_playwright: () => Promise<{
|
|
|
798
797
|
defaultBrowserType: "chromium" | "firefox" | "webkit";
|
|
799
798
|
};
|
|
800
799
|
"LG Optimus L70 landscape": {
|
|
801
|
-
viewport: import("playwright
|
|
800
|
+
viewport: import("playwright").ViewportSize;
|
|
802
801
|
userAgent: string;
|
|
803
802
|
deviceScaleFactor: number;
|
|
804
803
|
isMobile: boolean;
|
|
@@ -806,7 +805,7 @@ export declare const async_playwright: () => Promise<{
|
|
|
806
805
|
defaultBrowserType: "chromium" | "firefox" | "webkit";
|
|
807
806
|
};
|
|
808
807
|
"Microsoft Lumia 550": {
|
|
809
|
-
viewport: import("playwright
|
|
808
|
+
viewport: import("playwright").ViewportSize;
|
|
810
809
|
userAgent: string;
|
|
811
810
|
deviceScaleFactor: number;
|
|
812
811
|
isMobile: boolean;
|
|
@@ -814,7 +813,7 @@ export declare const async_playwright: () => Promise<{
|
|
|
814
813
|
defaultBrowserType: "chromium" | "firefox" | "webkit";
|
|
815
814
|
};
|
|
816
815
|
"Microsoft Lumia 550 landscape": {
|
|
817
|
-
viewport: import("playwright
|
|
816
|
+
viewport: import("playwright").ViewportSize;
|
|
818
817
|
userAgent: string;
|
|
819
818
|
deviceScaleFactor: number;
|
|
820
819
|
isMobile: boolean;
|
|
@@ -822,7 +821,7 @@ export declare const async_playwright: () => Promise<{
|
|
|
822
821
|
defaultBrowserType: "chromium" | "firefox" | "webkit";
|
|
823
822
|
};
|
|
824
823
|
"Microsoft Lumia 950": {
|
|
825
|
-
viewport: import("playwright
|
|
824
|
+
viewport: import("playwright").ViewportSize;
|
|
826
825
|
userAgent: string;
|
|
827
826
|
deviceScaleFactor: number;
|
|
828
827
|
isMobile: boolean;
|
|
@@ -830,7 +829,7 @@ export declare const async_playwright: () => Promise<{
|
|
|
830
829
|
defaultBrowserType: "chromium" | "firefox" | "webkit";
|
|
831
830
|
};
|
|
832
831
|
"Microsoft Lumia 950 landscape": {
|
|
833
|
-
viewport: import("playwright
|
|
832
|
+
viewport: import("playwright").ViewportSize;
|
|
834
833
|
userAgent: string;
|
|
835
834
|
deviceScaleFactor: number;
|
|
836
835
|
isMobile: boolean;
|
|
@@ -838,7 +837,7 @@ export declare const async_playwright: () => Promise<{
|
|
|
838
837
|
defaultBrowserType: "chromium" | "firefox" | "webkit";
|
|
839
838
|
};
|
|
840
839
|
"Nexus 10": {
|
|
841
|
-
viewport: import("playwright
|
|
840
|
+
viewport: import("playwright").ViewportSize;
|
|
842
841
|
userAgent: string;
|
|
843
842
|
deviceScaleFactor: number;
|
|
844
843
|
isMobile: boolean;
|
|
@@ -846,7 +845,7 @@ export declare const async_playwright: () => Promise<{
|
|
|
846
845
|
defaultBrowserType: "chromium" | "firefox" | "webkit";
|
|
847
846
|
};
|
|
848
847
|
"Nexus 10 landscape": {
|
|
849
|
-
viewport: import("playwright
|
|
848
|
+
viewport: import("playwright").ViewportSize;
|
|
850
849
|
userAgent: string;
|
|
851
850
|
deviceScaleFactor: number;
|
|
852
851
|
isMobile: boolean;
|
|
@@ -854,7 +853,7 @@ export declare const async_playwright: () => Promise<{
|
|
|
854
853
|
defaultBrowserType: "chromium" | "firefox" | "webkit";
|
|
855
854
|
};
|
|
856
855
|
"Nexus 4": {
|
|
857
|
-
viewport: import("playwright
|
|
856
|
+
viewport: import("playwright").ViewportSize;
|
|
858
857
|
userAgent: string;
|
|
859
858
|
deviceScaleFactor: number;
|
|
860
859
|
isMobile: boolean;
|
|
@@ -862,7 +861,7 @@ export declare const async_playwright: () => Promise<{
|
|
|
862
861
|
defaultBrowserType: "chromium" | "firefox" | "webkit";
|
|
863
862
|
};
|
|
864
863
|
"Nexus 4 landscape": {
|
|
865
|
-
viewport: import("playwright
|
|
864
|
+
viewport: import("playwright").ViewportSize;
|
|
866
865
|
userAgent: string;
|
|
867
866
|
deviceScaleFactor: number;
|
|
868
867
|
isMobile: boolean;
|
|
@@ -870,7 +869,7 @@ export declare const async_playwright: () => Promise<{
|
|
|
870
869
|
defaultBrowserType: "chromium" | "firefox" | "webkit";
|
|
871
870
|
};
|
|
872
871
|
"Nexus 5": {
|
|
873
|
-
viewport: import("playwright
|
|
872
|
+
viewport: import("playwright").ViewportSize;
|
|
874
873
|
userAgent: string;
|
|
875
874
|
deviceScaleFactor: number;
|
|
876
875
|
isMobile: boolean;
|
|
@@ -878,7 +877,7 @@ export declare const async_playwright: () => Promise<{
|
|
|
878
877
|
defaultBrowserType: "chromium" | "firefox" | "webkit";
|
|
879
878
|
};
|
|
880
879
|
"Nexus 5 landscape": {
|
|
881
|
-
viewport: import("playwright
|
|
880
|
+
viewport: import("playwright").ViewportSize;
|
|
882
881
|
userAgent: string;
|
|
883
882
|
deviceScaleFactor: number;
|
|
884
883
|
isMobile: boolean;
|
|
@@ -886,7 +885,7 @@ export declare const async_playwright: () => Promise<{
|
|
|
886
885
|
defaultBrowserType: "chromium" | "firefox" | "webkit";
|
|
887
886
|
};
|
|
888
887
|
"Nexus 5X": {
|
|
889
|
-
viewport: import("playwright
|
|
888
|
+
viewport: import("playwright").ViewportSize;
|
|
890
889
|
userAgent: string;
|
|
891
890
|
deviceScaleFactor: number;
|
|
892
891
|
isMobile: boolean;
|
|
@@ -894,7 +893,7 @@ export declare const async_playwright: () => Promise<{
|
|
|
894
893
|
defaultBrowserType: "chromium" | "firefox" | "webkit";
|
|
895
894
|
};
|
|
896
895
|
"Nexus 5X landscape": {
|
|
897
|
-
viewport: import("playwright
|
|
896
|
+
viewport: import("playwright").ViewportSize;
|
|
898
897
|
userAgent: string;
|
|
899
898
|
deviceScaleFactor: number;
|
|
900
899
|
isMobile: boolean;
|
|
@@ -902,7 +901,7 @@ export declare const async_playwright: () => Promise<{
|
|
|
902
901
|
defaultBrowserType: "chromium" | "firefox" | "webkit";
|
|
903
902
|
};
|
|
904
903
|
"Nexus 6": {
|
|
905
|
-
viewport: import("playwright
|
|
904
|
+
viewport: import("playwright").ViewportSize;
|
|
906
905
|
userAgent: string;
|
|
907
906
|
deviceScaleFactor: number;
|
|
908
907
|
isMobile: boolean;
|
|
@@ -910,7 +909,7 @@ export declare const async_playwright: () => Promise<{
|
|
|
910
909
|
defaultBrowserType: "chromium" | "firefox" | "webkit";
|
|
911
910
|
};
|
|
912
911
|
"Nexus 6 landscape": {
|
|
913
|
-
viewport: import("playwright
|
|
912
|
+
viewport: import("playwright").ViewportSize;
|
|
914
913
|
userAgent: string;
|
|
915
914
|
deviceScaleFactor: number;
|
|
916
915
|
isMobile: boolean;
|
|
@@ -918,7 +917,7 @@ export declare const async_playwright: () => Promise<{
|
|
|
918
917
|
defaultBrowserType: "chromium" | "firefox" | "webkit";
|
|
919
918
|
};
|
|
920
919
|
"Nexus 6P": {
|
|
921
|
-
viewport: import("playwright
|
|
920
|
+
viewport: import("playwright").ViewportSize;
|
|
922
921
|
userAgent: string;
|
|
923
922
|
deviceScaleFactor: number;
|
|
924
923
|
isMobile: boolean;
|
|
@@ -926,7 +925,7 @@ export declare const async_playwright: () => Promise<{
|
|
|
926
925
|
defaultBrowserType: "chromium" | "firefox" | "webkit";
|
|
927
926
|
};
|
|
928
927
|
"Nexus 6P landscape": {
|
|
929
|
-
viewport: import("playwright
|
|
928
|
+
viewport: import("playwright").ViewportSize;
|
|
930
929
|
userAgent: string;
|
|
931
930
|
deviceScaleFactor: number;
|
|
932
931
|
isMobile: boolean;
|
|
@@ -934,7 +933,7 @@ export declare const async_playwright: () => Promise<{
|
|
|
934
933
|
defaultBrowserType: "chromium" | "firefox" | "webkit";
|
|
935
934
|
};
|
|
936
935
|
"Nexus 7": {
|
|
937
|
-
viewport: import("playwright
|
|
936
|
+
viewport: import("playwright").ViewportSize;
|
|
938
937
|
userAgent: string;
|
|
939
938
|
deviceScaleFactor: number;
|
|
940
939
|
isMobile: boolean;
|
|
@@ -942,7 +941,7 @@ export declare const async_playwright: () => Promise<{
|
|
|
942
941
|
defaultBrowserType: "chromium" | "firefox" | "webkit";
|
|
943
942
|
};
|
|
944
943
|
"Nexus 7 landscape": {
|
|
945
|
-
viewport: import("playwright
|
|
944
|
+
viewport: import("playwright").ViewportSize;
|
|
946
945
|
userAgent: string;
|
|
947
946
|
deviceScaleFactor: number;
|
|
948
947
|
isMobile: boolean;
|
|
@@ -950,7 +949,7 @@ export declare const async_playwright: () => Promise<{
|
|
|
950
949
|
defaultBrowserType: "chromium" | "firefox" | "webkit";
|
|
951
950
|
};
|
|
952
951
|
"Nokia Lumia 520": {
|
|
953
|
-
viewport: import("playwright
|
|
952
|
+
viewport: import("playwright").ViewportSize;
|
|
954
953
|
userAgent: string;
|
|
955
954
|
deviceScaleFactor: number;
|
|
956
955
|
isMobile: boolean;
|
|
@@ -958,7 +957,7 @@ export declare const async_playwright: () => Promise<{
|
|
|
958
957
|
defaultBrowserType: "chromium" | "firefox" | "webkit";
|
|
959
958
|
};
|
|
960
959
|
"Nokia Lumia 520 landscape": {
|
|
961
|
-
viewport: import("playwright
|
|
960
|
+
viewport: import("playwright").ViewportSize;
|
|
962
961
|
userAgent: string;
|
|
963
962
|
deviceScaleFactor: number;
|
|
964
963
|
isMobile: boolean;
|
|
@@ -966,7 +965,7 @@ export declare const async_playwright: () => Promise<{
|
|
|
966
965
|
defaultBrowserType: "chromium" | "firefox" | "webkit";
|
|
967
966
|
};
|
|
968
967
|
"Nokia N9": {
|
|
969
|
-
viewport: import("playwright
|
|
968
|
+
viewport: import("playwright").ViewportSize;
|
|
970
969
|
userAgent: string;
|
|
971
970
|
deviceScaleFactor: number;
|
|
972
971
|
isMobile: boolean;
|
|
@@ -974,7 +973,7 @@ export declare const async_playwright: () => Promise<{
|
|
|
974
973
|
defaultBrowserType: "chromium" | "firefox" | "webkit";
|
|
975
974
|
};
|
|
976
975
|
"Nokia N9 landscape": {
|
|
977
|
-
viewport: import("playwright
|
|
976
|
+
viewport: import("playwright").ViewportSize;
|
|
978
977
|
userAgent: string;
|
|
979
978
|
deviceScaleFactor: number;
|
|
980
979
|
isMobile: boolean;
|
|
@@ -982,7 +981,7 @@ export declare const async_playwright: () => Promise<{
|
|
|
982
981
|
defaultBrowserType: "chromium" | "firefox" | "webkit";
|
|
983
982
|
};
|
|
984
983
|
"Pixel 2": {
|
|
985
|
-
viewport: import("playwright
|
|
984
|
+
viewport: import("playwright").ViewportSize;
|
|
986
985
|
userAgent: string;
|
|
987
986
|
deviceScaleFactor: number;
|
|
988
987
|
isMobile: boolean;
|
|
@@ -990,7 +989,7 @@ export declare const async_playwright: () => Promise<{
|
|
|
990
989
|
defaultBrowserType: "chromium" | "firefox" | "webkit";
|
|
991
990
|
};
|
|
992
991
|
"Pixel 2 landscape": {
|
|
993
|
-
viewport: import("playwright
|
|
992
|
+
viewport: import("playwright").ViewportSize;
|
|
994
993
|
userAgent: string;
|
|
995
994
|
deviceScaleFactor: number;
|
|
996
995
|
isMobile: boolean;
|
|
@@ -998,7 +997,7 @@ export declare const async_playwright: () => Promise<{
|
|
|
998
997
|
defaultBrowserType: "chromium" | "firefox" | "webkit";
|
|
999
998
|
};
|
|
1000
999
|
"Pixel 2 XL": {
|
|
1001
|
-
viewport: import("playwright
|
|
1000
|
+
viewport: import("playwright").ViewportSize;
|
|
1002
1001
|
userAgent: string;
|
|
1003
1002
|
deviceScaleFactor: number;
|
|
1004
1003
|
isMobile: boolean;
|
|
@@ -1006,7 +1005,7 @@ export declare const async_playwright: () => Promise<{
|
|
|
1006
1005
|
defaultBrowserType: "chromium" | "firefox" | "webkit";
|
|
1007
1006
|
};
|
|
1008
1007
|
"Pixel 2 XL landscape": {
|
|
1009
|
-
viewport: import("playwright
|
|
1008
|
+
viewport: import("playwright").ViewportSize;
|
|
1010
1009
|
userAgent: string;
|
|
1011
1010
|
deviceScaleFactor: number;
|
|
1012
1011
|
isMobile: boolean;
|
|
@@ -1014,7 +1013,7 @@ export declare const async_playwright: () => Promise<{
|
|
|
1014
1013
|
defaultBrowserType: "chromium" | "firefox" | "webkit";
|
|
1015
1014
|
};
|
|
1016
1015
|
"Pixel 3": {
|
|
1017
|
-
viewport: import("playwright
|
|
1016
|
+
viewport: import("playwright").ViewportSize;
|
|
1018
1017
|
userAgent: string;
|
|
1019
1018
|
deviceScaleFactor: number;
|
|
1020
1019
|
isMobile: boolean;
|
|
@@ -1022,7 +1021,7 @@ export declare const async_playwright: () => Promise<{
|
|
|
1022
1021
|
defaultBrowserType: "chromium" | "firefox" | "webkit";
|
|
1023
1022
|
};
|
|
1024
1023
|
"Pixel 3 landscape": {
|
|
1025
|
-
viewport: import("playwright
|
|
1024
|
+
viewport: import("playwright").ViewportSize;
|
|
1026
1025
|
userAgent: string;
|
|
1027
1026
|
deviceScaleFactor: number;
|
|
1028
1027
|
isMobile: boolean;
|
|
@@ -1030,7 +1029,7 @@ export declare const async_playwright: () => Promise<{
|
|
|
1030
1029
|
defaultBrowserType: "chromium" | "firefox" | "webkit";
|
|
1031
1030
|
};
|
|
1032
1031
|
"Pixel 4": {
|
|
1033
|
-
viewport: import("playwright
|
|
1032
|
+
viewport: import("playwright").ViewportSize;
|
|
1034
1033
|
userAgent: string;
|
|
1035
1034
|
deviceScaleFactor: number;
|
|
1036
1035
|
isMobile: boolean;
|
|
@@ -1038,7 +1037,7 @@ export declare const async_playwright: () => Promise<{
|
|
|
1038
1037
|
defaultBrowserType: "chromium" | "firefox" | "webkit";
|
|
1039
1038
|
};
|
|
1040
1039
|
"Pixel 4 landscape": {
|
|
1041
|
-
viewport: import("playwright
|
|
1040
|
+
viewport: import("playwright").ViewportSize;
|
|
1042
1041
|
userAgent: string;
|
|
1043
1042
|
deviceScaleFactor: number;
|
|
1044
1043
|
isMobile: boolean;
|
|
@@ -1046,7 +1045,7 @@ export declare const async_playwright: () => Promise<{
|
|
|
1046
1045
|
defaultBrowserType: "chromium" | "firefox" | "webkit";
|
|
1047
1046
|
};
|
|
1048
1047
|
"Pixel 4a (5G)": {
|
|
1049
|
-
viewport: import("playwright
|
|
1048
|
+
viewport: import("playwright").ViewportSize;
|
|
1050
1049
|
userAgent: string;
|
|
1051
1050
|
deviceScaleFactor: number;
|
|
1052
1051
|
isMobile: boolean;
|
|
@@ -1054,7 +1053,7 @@ export declare const async_playwright: () => Promise<{
|
|
|
1054
1053
|
defaultBrowserType: "chromium" | "firefox" | "webkit";
|
|
1055
1054
|
};
|
|
1056
1055
|
"Pixel 4a (5G) landscape": {
|
|
1057
|
-
viewport: import("playwright
|
|
1056
|
+
viewport: import("playwright").ViewportSize;
|
|
1058
1057
|
userAgent: string;
|
|
1059
1058
|
deviceScaleFactor: number;
|
|
1060
1059
|
isMobile: boolean;
|
|
@@ -1062,7 +1061,7 @@ export declare const async_playwright: () => Promise<{
|
|
|
1062
1061
|
defaultBrowserType: "chromium" | "firefox" | "webkit";
|
|
1063
1062
|
};
|
|
1064
1063
|
"Pixel 5": {
|
|
1065
|
-
viewport: import("playwright
|
|
1064
|
+
viewport: import("playwright").ViewportSize;
|
|
1066
1065
|
userAgent: string;
|
|
1067
1066
|
deviceScaleFactor: number;
|
|
1068
1067
|
isMobile: boolean;
|
|
@@ -1070,7 +1069,7 @@ export declare const async_playwright: () => Promise<{
|
|
|
1070
1069
|
defaultBrowserType: "chromium" | "firefox" | "webkit";
|
|
1071
1070
|
};
|
|
1072
1071
|
"Pixel 5 landscape": {
|
|
1073
|
-
viewport: import("playwright
|
|
1072
|
+
viewport: import("playwright").ViewportSize;
|
|
1074
1073
|
userAgent: string;
|
|
1075
1074
|
deviceScaleFactor: number;
|
|
1076
1075
|
isMobile: boolean;
|
|
@@ -1078,7 +1077,7 @@ export declare const async_playwright: () => Promise<{
|
|
|
1078
1077
|
defaultBrowserType: "chromium" | "firefox" | "webkit";
|
|
1079
1078
|
};
|
|
1080
1079
|
"Pixel 7": {
|
|
1081
|
-
viewport: import("playwright
|
|
1080
|
+
viewport: import("playwright").ViewportSize;
|
|
1082
1081
|
userAgent: string;
|
|
1083
1082
|
deviceScaleFactor: number;
|
|
1084
1083
|
isMobile: boolean;
|
|
@@ -1086,7 +1085,7 @@ export declare const async_playwright: () => Promise<{
|
|
|
1086
1085
|
defaultBrowserType: "chromium" | "firefox" | "webkit";
|
|
1087
1086
|
};
|
|
1088
1087
|
"Pixel 7 landscape": {
|
|
1089
|
-
viewport: import("playwright
|
|
1088
|
+
viewport: import("playwright").ViewportSize;
|
|
1090
1089
|
userAgent: string;
|
|
1091
1090
|
deviceScaleFactor: number;
|
|
1092
1091
|
isMobile: boolean;
|
|
@@ -1094,7 +1093,7 @@ export declare const async_playwright: () => Promise<{
|
|
|
1094
1093
|
defaultBrowserType: "chromium" | "firefox" | "webkit";
|
|
1095
1094
|
};
|
|
1096
1095
|
"Moto G4": {
|
|
1097
|
-
viewport: import("playwright
|
|
1096
|
+
viewport: import("playwright").ViewportSize;
|
|
1098
1097
|
userAgent: string;
|
|
1099
1098
|
deviceScaleFactor: number;
|
|
1100
1099
|
isMobile: boolean;
|
|
@@ -1102,7 +1101,7 @@ export declare const async_playwright: () => Promise<{
|
|
|
1102
1101
|
defaultBrowserType: "chromium" | "firefox" | "webkit";
|
|
1103
1102
|
};
|
|
1104
1103
|
"Moto G4 landscape": {
|
|
1105
|
-
viewport: import("playwright
|
|
1104
|
+
viewport: import("playwright").ViewportSize;
|
|
1106
1105
|
userAgent: string;
|
|
1107
1106
|
deviceScaleFactor: number;
|
|
1108
1107
|
isMobile: boolean;
|
|
@@ -1110,7 +1109,7 @@ export declare const async_playwright: () => Promise<{
|
|
|
1110
1109
|
defaultBrowserType: "chromium" | "firefox" | "webkit";
|
|
1111
1110
|
};
|
|
1112
1111
|
"Desktop Chrome HiDPI": {
|
|
1113
|
-
viewport: import("playwright
|
|
1112
|
+
viewport: import("playwright").ViewportSize;
|
|
1114
1113
|
userAgent: string;
|
|
1115
1114
|
deviceScaleFactor: number;
|
|
1116
1115
|
isMobile: boolean;
|
|
@@ -1118,7 +1117,7 @@ export declare const async_playwright: () => Promise<{
|
|
|
1118
1117
|
defaultBrowserType: "chromium" | "firefox" | "webkit";
|
|
1119
1118
|
};
|
|
1120
1119
|
"Desktop Edge HiDPI": {
|
|
1121
|
-
viewport: import("playwright
|
|
1120
|
+
viewport: import("playwright").ViewportSize;
|
|
1122
1121
|
userAgent: string;
|
|
1123
1122
|
deviceScaleFactor: number;
|
|
1124
1123
|
isMobile: boolean;
|
|
@@ -1126,7 +1125,7 @@ export declare const async_playwright: () => Promise<{
|
|
|
1126
1125
|
defaultBrowserType: "chromium" | "firefox" | "webkit";
|
|
1127
1126
|
};
|
|
1128
1127
|
"Desktop Firefox HiDPI": {
|
|
1129
|
-
viewport: import("playwright
|
|
1128
|
+
viewport: import("playwright").ViewportSize;
|
|
1130
1129
|
userAgent: string;
|
|
1131
1130
|
deviceScaleFactor: number;
|
|
1132
1131
|
isMobile: boolean;
|
|
@@ -1134,7 +1133,7 @@ export declare const async_playwright: () => Promise<{
|
|
|
1134
1133
|
defaultBrowserType: "chromium" | "firefox" | "webkit";
|
|
1135
1134
|
};
|
|
1136
1135
|
"Desktop Safari": {
|
|
1137
|
-
viewport: import("playwright
|
|
1136
|
+
viewport: import("playwright").ViewportSize;
|
|
1138
1137
|
userAgent: string;
|
|
1139
1138
|
deviceScaleFactor: number;
|
|
1140
1139
|
isMobile: boolean;
|
|
@@ -1142,7 +1141,7 @@ export declare const async_playwright: () => Promise<{
|
|
|
1142
1141
|
defaultBrowserType: "chromium" | "firefox" | "webkit";
|
|
1143
1142
|
};
|
|
1144
1143
|
"Desktop Chrome": {
|
|
1145
|
-
viewport: import("playwright
|
|
1144
|
+
viewport: import("playwright").ViewportSize;
|
|
1146
1145
|
userAgent: string;
|
|
1147
1146
|
deviceScaleFactor: number;
|
|
1148
1147
|
isMobile: boolean;
|
|
@@ -1150,7 +1149,7 @@ export declare const async_playwright: () => Promise<{
|
|
|
1150
1149
|
defaultBrowserType: "chromium" | "firefox" | "webkit";
|
|
1151
1150
|
};
|
|
1152
1151
|
"Desktop Edge": {
|
|
1153
|
-
viewport: import("playwright
|
|
1152
|
+
viewport: import("playwright").ViewportSize;
|
|
1154
1153
|
userAgent: string;
|
|
1155
1154
|
deviceScaleFactor: number;
|
|
1156
1155
|
isMobile: boolean;
|
|
@@ -1158,7 +1157,7 @@ export declare const async_playwright: () => Promise<{
|
|
|
1158
1157
|
defaultBrowserType: "chromium" | "firefox" | "webkit";
|
|
1159
1158
|
};
|
|
1160
1159
|
"Desktop Firefox": {
|
|
1161
|
-
viewport: import("playwright
|
|
1160
|
+
viewport: import("playwright").ViewportSize;
|
|
1162
1161
|
userAgent: string;
|
|
1163
1162
|
deviceScaleFactor: number;
|
|
1164
1163
|
isMobile: boolean;
|
|
@@ -1166,15 +1165,13 @@ export declare const async_playwright: () => Promise<{
|
|
|
1166
1165
|
defaultBrowserType: "chromium" | "firefox" | "webkit";
|
|
1167
1166
|
};
|
|
1168
1167
|
};
|
|
1169
|
-
_electron: import("playwright
|
|
1170
|
-
_android: import("playwright
|
|
1171
|
-
|
|
1172
|
-
|
|
1173
|
-
|
|
1174
|
-
|
|
1175
|
-
|
|
1176
|
-
selectors: import("playwright-core").Selectors;
|
|
1177
|
-
webkit: import("playwright-core").BrowserType;
|
|
1168
|
+
_electron: import("playwright").Electron;
|
|
1169
|
+
_android: import("playwright").Android;
|
|
1170
|
+
chromium: import("playwright").BrowserType;
|
|
1171
|
+
firefox: import("playwright").BrowserType;
|
|
1172
|
+
request: import("playwright").APIRequest;
|
|
1173
|
+
selectors: import("playwright").Selectors;
|
|
1174
|
+
webkit: import("playwright").BrowserType;
|
|
1178
1175
|
}>;
|
|
1179
1176
|
export type ProxySettings = NonNullable<LaunchOptions['proxy']>;
|
|
1180
1177
|
export type HttpCredentials = NonNullable<BrowserContextOptions['httpCredentials']>;
|