@wdio/protocols 8.22.0 → 8.23.0
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/build/commands/saucelabs.d.ts +3 -3
- package/build/commands/saucelabs.d.ts.map +1 -1
- package/build/protocols/jsonwp.js +2 -2
- package/build/protocols/saucelabs.js +3 -3
- package/build/protocols/webdriverBidi.d.ts +492 -334
- package/build/protocols/webdriverBidi.d.ts.map +1 -1
- package/build/protocols/webdriverBidi.js +208 -27
- package/build/types.d.ts +0 -3
- package/build/types.d.ts.map +1 -1
- package/package.json +2 -2
|
@@ -12,374 +12,532 @@
|
|
|
12
12
|
* from the project root. You can find the scripts that generates this file in
|
|
13
13
|
* ./scripts/bidi/**
|
|
14
14
|
*/
|
|
15
|
-
declare const
|
|
16
|
-
sendCommand: {
|
|
17
|
-
socket: {
|
|
18
|
-
command:
|
|
19
|
-
description:
|
|
20
|
-
ref:
|
|
21
|
-
parameters: {
|
|
22
|
-
name:
|
|
23
|
-
type:
|
|
24
|
-
description:
|
|
25
|
-
required:
|
|
26
|
-
}
|
|
27
|
-
returns: {
|
|
28
|
-
type:
|
|
29
|
-
name:
|
|
30
|
-
description:
|
|
15
|
+
declare const protocol: {
|
|
16
|
+
readonly sendCommand: {
|
|
17
|
+
readonly socket: {
|
|
18
|
+
readonly command: "send";
|
|
19
|
+
readonly description: "Send socket commands via WebDriver Bidi";
|
|
20
|
+
readonly ref: "https://github.com/w3c/webdriver-bidi";
|
|
21
|
+
readonly parameters: readonly [{
|
|
22
|
+
readonly name: "params";
|
|
23
|
+
readonly type: "CommandData";
|
|
24
|
+
readonly description: "socket payload";
|
|
25
|
+
readonly required: true;
|
|
26
|
+
}];
|
|
27
|
+
readonly returns: {
|
|
28
|
+
readonly type: "Object";
|
|
29
|
+
readonly name: "CommandResponse";
|
|
30
|
+
readonly description: "WebDriver Bidi response";
|
|
31
31
|
};
|
|
32
32
|
};
|
|
33
33
|
};
|
|
34
|
-
sendAsyncCommand: {
|
|
35
|
-
socket: {
|
|
36
|
-
command:
|
|
37
|
-
description:
|
|
38
|
-
ref:
|
|
39
|
-
parameters: {
|
|
40
|
-
name:
|
|
41
|
-
type:
|
|
42
|
-
description:
|
|
43
|
-
required:
|
|
44
|
-
}
|
|
45
|
-
returns: {
|
|
46
|
-
type:
|
|
47
|
-
name:
|
|
48
|
-
description:
|
|
34
|
+
readonly sendAsyncCommand: {
|
|
35
|
+
readonly socket: {
|
|
36
|
+
readonly command: "sendAsync";
|
|
37
|
+
readonly description: "Send asynchronous socket commands via WebDriver Bidi";
|
|
38
|
+
readonly ref: "https://github.com/w3c/webdriver-bidi";
|
|
39
|
+
readonly parameters: readonly [{
|
|
40
|
+
readonly name: "params";
|
|
41
|
+
readonly type: "CommandData";
|
|
42
|
+
readonly description: "socket payload";
|
|
43
|
+
readonly required: true;
|
|
44
|
+
}];
|
|
45
|
+
readonly returns: {
|
|
46
|
+
readonly type: "Number";
|
|
47
|
+
readonly name: "id";
|
|
48
|
+
readonly description: "id of WebDriver Bidi request";
|
|
49
49
|
};
|
|
50
50
|
};
|
|
51
51
|
};
|
|
52
|
-
"session.status": {
|
|
53
|
-
socket: {
|
|
54
|
-
command:
|
|
55
|
-
description:
|
|
56
|
-
ref:
|
|
57
|
-
parameters: {
|
|
58
|
-
name:
|
|
59
|
-
type:
|
|
60
|
-
description:
|
|
61
|
-
required:
|
|
62
|
-
}
|
|
63
|
-
returns: {
|
|
64
|
-
type:
|
|
65
|
-
name:
|
|
66
|
-
description: string;
|
|
52
|
+
readonly "session.status": {
|
|
53
|
+
readonly socket: {
|
|
54
|
+
readonly command: "sessionStatus";
|
|
55
|
+
readonly description: "WebDriver Bidi command to send command method \"session.status\" with parameters.";
|
|
56
|
+
readonly ref: "https://w3c.github.io/webdriver-bidi/#command-session-status";
|
|
57
|
+
readonly parameters: readonly [{
|
|
58
|
+
readonly name: "params";
|
|
59
|
+
readonly type: "`remote.EmptyParams`";
|
|
60
|
+
readonly description: "<pre>\\{\\}</pre>";
|
|
61
|
+
readonly required: true;
|
|
62
|
+
}];
|
|
63
|
+
readonly returns: {
|
|
64
|
+
readonly type: "Object";
|
|
65
|
+
readonly name: "local.SessionStatusResult";
|
|
66
|
+
readonly description: "Command return value with the following interface:\n ```ts\n {\n ready: boolean;\n message: string;\n }\n ```";
|
|
67
67
|
};
|
|
68
68
|
};
|
|
69
69
|
};
|
|
70
|
-
"session.new": {
|
|
71
|
-
socket: {
|
|
72
|
-
command:
|
|
73
|
-
description:
|
|
74
|
-
ref:
|
|
75
|
-
parameters: {
|
|
76
|
-
name:
|
|
77
|
-
type:
|
|
78
|
-
description:
|
|
79
|
-
required:
|
|
80
|
-
}
|
|
81
|
-
returns: {
|
|
82
|
-
type:
|
|
83
|
-
name:
|
|
84
|
-
description: string;
|
|
70
|
+
readonly "session.new": {
|
|
71
|
+
readonly socket: {
|
|
72
|
+
readonly command: "sessionNew";
|
|
73
|
+
readonly description: "WebDriver Bidi command to send command method \"session.new\" with parameters.";
|
|
74
|
+
readonly ref: "https://w3c.github.io/webdriver-bidi/#command-session-new";
|
|
75
|
+
readonly parameters: readonly [{
|
|
76
|
+
readonly name: "params";
|
|
77
|
+
readonly type: "`remote.SessionNewParameters`";
|
|
78
|
+
readonly description: "<pre>\\{<br /> capabilities: SessionCapabilitiesRequest;<br />\\}</pre>";
|
|
79
|
+
readonly required: true;
|
|
80
|
+
}];
|
|
81
|
+
readonly returns: {
|
|
82
|
+
readonly type: "Object";
|
|
83
|
+
readonly name: "local.SessionNewResult";
|
|
84
|
+
readonly description: "Command return value with the following interface:\n ```ts\n {\n sessionId: string;\n capabilities: {\n acceptInsecureCerts: boolean;\n browserName: string;\n browserVersion: string;\n platformName: string;\n proxy: {\n proxyType?: \"pac\" | \"direct\" | \"autodetect\" | \"system\" | \"manual\";\n proxyAutoconfigUrl?: string;\n ftpProxy?: string;\n httpProxy?: string;\n noProxy?: string[];\n sslProxy?: string;\n socksProxy?: string;\n socksVersion?: number;\n };\n setWindowRect: boolean;\n };\n }\n ```";
|
|
85
85
|
};
|
|
86
86
|
};
|
|
87
87
|
};
|
|
88
|
-
"session.end": {
|
|
89
|
-
socket: {
|
|
90
|
-
command:
|
|
91
|
-
description:
|
|
92
|
-
ref:
|
|
93
|
-
parameters: {
|
|
94
|
-
name:
|
|
95
|
-
type:
|
|
96
|
-
description:
|
|
97
|
-
required:
|
|
98
|
-
}
|
|
99
|
-
};
|
|
100
|
-
};
|
|
101
|
-
"session.subscribe": {
|
|
102
|
-
socket: {
|
|
103
|
-
command:
|
|
104
|
-
description:
|
|
105
|
-
ref:
|
|
106
|
-
parameters: {
|
|
107
|
-
name:
|
|
108
|
-
type:
|
|
109
|
-
description: string;
|
|
110
|
-
required:
|
|
111
|
-
}
|
|
112
|
-
};
|
|
113
|
-
};
|
|
114
|
-
"session.unsubscribe": {
|
|
115
|
-
socket: {
|
|
116
|
-
command:
|
|
117
|
-
description:
|
|
118
|
-
ref:
|
|
119
|
-
parameters: {
|
|
120
|
-
name:
|
|
121
|
-
type:
|
|
122
|
-
description: string;
|
|
123
|
-
required:
|
|
124
|
-
}
|
|
125
|
-
};
|
|
126
|
-
};
|
|
127
|
-
"browser.close": {
|
|
128
|
-
socket: {
|
|
129
|
-
command:
|
|
130
|
-
description:
|
|
131
|
-
ref:
|
|
132
|
-
parameters: {
|
|
133
|
-
name:
|
|
134
|
-
type:
|
|
135
|
-
description:
|
|
136
|
-
required:
|
|
137
|
-
}
|
|
138
|
-
};
|
|
139
|
-
};
|
|
140
|
-
"browsingContext.
|
|
141
|
-
socket: {
|
|
142
|
-
command:
|
|
143
|
-
description:
|
|
144
|
-
ref:
|
|
145
|
-
parameters: {
|
|
146
|
-
name:
|
|
147
|
-
type:
|
|
148
|
-
description:
|
|
149
|
-
required:
|
|
150
|
-
}
|
|
151
|
-
|
|
152
|
-
|
|
153
|
-
|
|
154
|
-
|
|
88
|
+
readonly "session.end": {
|
|
89
|
+
readonly socket: {
|
|
90
|
+
readonly command: "sessionEnd";
|
|
91
|
+
readonly description: "WebDriver Bidi command to send command method \"session.end\" with parameters.";
|
|
92
|
+
readonly ref: "https://w3c.github.io/webdriver-bidi/#command-session-end";
|
|
93
|
+
readonly parameters: readonly [{
|
|
94
|
+
readonly name: "params";
|
|
95
|
+
readonly type: "`remote.EmptyParams`";
|
|
96
|
+
readonly description: "<pre>\\{\\}</pre>";
|
|
97
|
+
readonly required: true;
|
|
98
|
+
}];
|
|
99
|
+
};
|
|
100
|
+
};
|
|
101
|
+
readonly "session.subscribe": {
|
|
102
|
+
readonly socket: {
|
|
103
|
+
readonly command: "sessionSubscribe";
|
|
104
|
+
readonly description: "WebDriver Bidi command to send command method \"session.subscribe\" with parameters.";
|
|
105
|
+
readonly ref: "https://w3c.github.io/webdriver-bidi/#command-session-subscribe";
|
|
106
|
+
readonly parameters: readonly [{
|
|
107
|
+
readonly name: "params";
|
|
108
|
+
readonly type: "`remote.SessionSubscriptionRequest`";
|
|
109
|
+
readonly description: "<pre>\\{<br /> events: string[];<br /> contexts?: BrowsingContextBrowsingContext[];<br />\\}</pre>";
|
|
110
|
+
readonly required: true;
|
|
111
|
+
}];
|
|
112
|
+
};
|
|
113
|
+
};
|
|
114
|
+
readonly "session.unsubscribe": {
|
|
115
|
+
readonly socket: {
|
|
116
|
+
readonly command: "sessionUnsubscribe";
|
|
117
|
+
readonly description: "WebDriver Bidi command to send command method \"session.unsubscribe\" with parameters.";
|
|
118
|
+
readonly ref: "https://w3c.github.io/webdriver-bidi/#command-session-unsubscribe";
|
|
119
|
+
readonly parameters: readonly [{
|
|
120
|
+
readonly name: "params";
|
|
121
|
+
readonly type: "`remote.SessionSubscriptionRequest`";
|
|
122
|
+
readonly description: "<pre>\\{<br /> events: string[];<br /> contexts?: BrowsingContextBrowsingContext[];<br />\\}</pre>";
|
|
123
|
+
readonly required: true;
|
|
124
|
+
}];
|
|
125
|
+
};
|
|
126
|
+
};
|
|
127
|
+
readonly "browser.close": {
|
|
128
|
+
readonly socket: {
|
|
129
|
+
readonly command: "browserClose";
|
|
130
|
+
readonly description: "WebDriver Bidi command to send command method \"browser.close\" with parameters.";
|
|
131
|
+
readonly ref: "https://w3c.github.io/webdriver-bidi/#command-browser-close";
|
|
132
|
+
readonly parameters: readonly [{
|
|
133
|
+
readonly name: "params";
|
|
134
|
+
readonly type: "`remote.EmptyParams`";
|
|
135
|
+
readonly description: "<pre>\\{\\}</pre>";
|
|
136
|
+
readonly required: true;
|
|
137
|
+
}];
|
|
138
|
+
};
|
|
139
|
+
};
|
|
140
|
+
readonly "browsingContext.activate": {
|
|
141
|
+
readonly socket: {
|
|
142
|
+
readonly command: "browsingContextActivate";
|
|
143
|
+
readonly description: "WebDriver Bidi command to send command method \"browsingContext.activate\" with parameters.";
|
|
144
|
+
readonly ref: "https://w3c.github.io/webdriver-bidi/#command-browsingContext-activate";
|
|
145
|
+
readonly parameters: readonly [{
|
|
146
|
+
readonly name: "params";
|
|
147
|
+
readonly type: "`remote.BrowsingContextActivateParameters`";
|
|
148
|
+
readonly description: "<pre>\\{<br /> context: BrowsingContextBrowsingContext;<br />\\}</pre>";
|
|
149
|
+
readonly required: true;
|
|
150
|
+
}];
|
|
151
|
+
};
|
|
152
|
+
};
|
|
153
|
+
readonly "browsingContext.captureScreenshot": {
|
|
154
|
+
readonly socket: {
|
|
155
|
+
readonly command: "browsingContextCaptureScreenshot";
|
|
156
|
+
readonly description: "WebDriver Bidi command to send command method \"browsingContext.captureScreenshot\" with parameters.";
|
|
157
|
+
readonly ref: "https://w3c.github.io/webdriver-bidi/#command-browsingContext-captureScreenshot";
|
|
158
|
+
readonly parameters: readonly [{
|
|
159
|
+
readonly name: "params";
|
|
160
|
+
readonly type: "`remote.BrowsingContextCaptureScreenshotParameters`";
|
|
161
|
+
readonly description: "<pre>\\{<br /> context: BrowsingContextBrowsingContext;<br /> /\\*\\*<br /> \\* @default 'viewport'<br /> \\*/<br /> origin?: \"viewport\" | \"document\";<br /> format?: BrowsingContextImageFormat;<br /> clip?: BrowsingContextClipRectangle;<br />\\}</pre>";
|
|
162
|
+
readonly required: true;
|
|
163
|
+
}];
|
|
164
|
+
readonly returns: {
|
|
165
|
+
readonly type: "Object";
|
|
166
|
+
readonly name: "local.BrowsingContextCaptureScreenshotResult";
|
|
167
|
+
readonly description: "Command return value with the following interface:\n ```ts\n {\n data: string;\n }\n ```";
|
|
155
168
|
};
|
|
156
169
|
};
|
|
157
170
|
};
|
|
158
|
-
"browsingContext.close": {
|
|
159
|
-
socket: {
|
|
160
|
-
command:
|
|
161
|
-
description:
|
|
162
|
-
ref:
|
|
163
|
-
parameters: {
|
|
164
|
-
name:
|
|
165
|
-
type:
|
|
166
|
-
description:
|
|
167
|
-
required:
|
|
168
|
-
}
|
|
169
|
-
};
|
|
170
|
-
};
|
|
171
|
-
"browsingContext.create": {
|
|
172
|
-
socket: {
|
|
173
|
-
command:
|
|
174
|
-
description:
|
|
175
|
-
ref:
|
|
176
|
-
parameters: {
|
|
177
|
-
name:
|
|
178
|
-
type:
|
|
179
|
-
description:
|
|
180
|
-
required:
|
|
181
|
-
}
|
|
182
|
-
returns: {
|
|
183
|
-
type:
|
|
184
|
-
name:
|
|
185
|
-
description:
|
|
171
|
+
readonly "browsingContext.close": {
|
|
172
|
+
readonly socket: {
|
|
173
|
+
readonly command: "browsingContextClose";
|
|
174
|
+
readonly description: "WebDriver Bidi command to send command method \"browsingContext.close\" with parameters.";
|
|
175
|
+
readonly ref: "https://w3c.github.io/webdriver-bidi/#command-browsingContext-close";
|
|
176
|
+
readonly parameters: readonly [{
|
|
177
|
+
readonly name: "params";
|
|
178
|
+
readonly type: "`remote.BrowsingContextCloseParameters`";
|
|
179
|
+
readonly description: "<pre>\\{<br /> context: BrowsingContextBrowsingContext;<br /> promptUnload?: boolean;<br />\\}</pre>";
|
|
180
|
+
readonly required: true;
|
|
181
|
+
}];
|
|
182
|
+
};
|
|
183
|
+
};
|
|
184
|
+
readonly "browsingContext.create": {
|
|
185
|
+
readonly socket: {
|
|
186
|
+
readonly command: "browsingContextCreate";
|
|
187
|
+
readonly description: "WebDriver Bidi command to send command method \"browsingContext.create\" with parameters.";
|
|
188
|
+
readonly ref: "https://w3c.github.io/webdriver-bidi/#command-browsingContext-create";
|
|
189
|
+
readonly parameters: readonly [{
|
|
190
|
+
readonly name: "params";
|
|
191
|
+
readonly type: "`remote.BrowsingContextCreateParameters`";
|
|
192
|
+
readonly description: "<pre>\\{<br /> type: BrowsingContextCreateType;<br /> referenceContext?: BrowsingContextBrowsingContext;<br /> background?: boolean;<br />\\}</pre>";
|
|
193
|
+
readonly required: true;
|
|
194
|
+
}];
|
|
195
|
+
readonly returns: {
|
|
196
|
+
readonly type: "Object";
|
|
197
|
+
readonly name: "local.BrowsingContextCreateResult";
|
|
198
|
+
readonly description: "Command return value with the following interface:\n ```ts\n {\n context: BrowsingContextBrowsingContext;\n }\n ```";
|
|
186
199
|
};
|
|
187
200
|
};
|
|
188
201
|
};
|
|
189
|
-
"browsingContext.getTree": {
|
|
190
|
-
socket: {
|
|
191
|
-
command:
|
|
192
|
-
description:
|
|
193
|
-
ref:
|
|
194
|
-
parameters: {
|
|
195
|
-
name:
|
|
196
|
-
type:
|
|
197
|
-
description:
|
|
198
|
-
required:
|
|
199
|
-
}
|
|
200
|
-
returns: {
|
|
201
|
-
type:
|
|
202
|
-
name:
|
|
203
|
-
description:
|
|
202
|
+
readonly "browsingContext.getTree": {
|
|
203
|
+
readonly socket: {
|
|
204
|
+
readonly command: "browsingContextGetTree";
|
|
205
|
+
readonly description: "WebDriver Bidi command to send command method \"browsingContext.getTree\" with parameters.";
|
|
206
|
+
readonly ref: "https://w3c.github.io/webdriver-bidi/#command-browsingContext-getTree";
|
|
207
|
+
readonly parameters: readonly [{
|
|
208
|
+
readonly name: "params";
|
|
209
|
+
readonly type: "`remote.BrowsingContextGetTreeParameters`";
|
|
210
|
+
readonly description: "<pre>\\{<br /> maxDepth?: JsUint;<br /> root?: BrowsingContextBrowsingContext;<br />\\}</pre>";
|
|
211
|
+
readonly required: true;
|
|
212
|
+
}];
|
|
213
|
+
readonly returns: {
|
|
214
|
+
readonly type: "Object";
|
|
215
|
+
readonly name: "local.BrowsingContextGetTreeResult";
|
|
216
|
+
readonly description: "Command return value with the following interface:\n ```ts\n {\n contexts: BrowsingContextInfoList;\n }\n ```";
|
|
204
217
|
};
|
|
205
218
|
};
|
|
206
219
|
};
|
|
207
|
-
"browsingContext.handleUserPrompt": {
|
|
208
|
-
socket: {
|
|
209
|
-
command:
|
|
210
|
-
description:
|
|
211
|
-
ref:
|
|
212
|
-
parameters: {
|
|
213
|
-
name:
|
|
214
|
-
type:
|
|
215
|
-
description: string;
|
|
216
|
-
required:
|
|
217
|
-
}
|
|
218
|
-
};
|
|
219
|
-
};
|
|
220
|
-
"browsingContext.
|
|
221
|
-
socket: {
|
|
222
|
-
command:
|
|
223
|
-
description:
|
|
224
|
-
ref:
|
|
225
|
-
parameters: {
|
|
226
|
-
name:
|
|
227
|
-
type:
|
|
228
|
-
description: string;
|
|
229
|
-
required:
|
|
230
|
-
}
|
|
231
|
-
returns: {
|
|
232
|
-
type:
|
|
233
|
-
name:
|
|
234
|
-
description:
|
|
220
|
+
readonly "browsingContext.handleUserPrompt": {
|
|
221
|
+
readonly socket: {
|
|
222
|
+
readonly command: "browsingContextHandleUserPrompt";
|
|
223
|
+
readonly description: "WebDriver Bidi command to send command method \"browsingContext.handleUserPrompt\" with parameters.";
|
|
224
|
+
readonly ref: "https://w3c.github.io/webdriver-bidi/#command-browsingContext-handleUserPrompt";
|
|
225
|
+
readonly parameters: readonly [{
|
|
226
|
+
readonly name: "params";
|
|
227
|
+
readonly type: "`remote.BrowsingContextHandleUserPromptParameters`";
|
|
228
|
+
readonly description: "<pre>\\{<br /> context: BrowsingContextBrowsingContext;<br /> accept?: boolean;<br /> userText?: string;<br />\\}</pre>";
|
|
229
|
+
readonly required: true;
|
|
230
|
+
}];
|
|
231
|
+
};
|
|
232
|
+
};
|
|
233
|
+
readonly "browsingContext.locateNodes": {
|
|
234
|
+
readonly socket: {
|
|
235
|
+
readonly command: "browsingContextLocateNodes";
|
|
236
|
+
readonly description: "WebDriver Bidi command to send command method \"browsingContext.locateNodes\" with parameters.";
|
|
237
|
+
readonly ref: "https://w3c.github.io/webdriver-bidi/#command-browsingContext-locateNodes";
|
|
238
|
+
readonly parameters: readonly [{
|
|
239
|
+
readonly name: "params";
|
|
240
|
+
readonly type: "`remote.BrowsingContextLocateNodesParameters`";
|
|
241
|
+
readonly description: "<pre>\\{<br /> context: BrowsingContextBrowsingContext;<br /> locator: BrowsingContextLocator;<br /> maxNodeCount?: JsUint;<br /> ownership?: ScriptResultOwnership;<br /> sandbox?: string;<br /> serializationOptions?: ScriptSerializationOptions;<br /> startNodes?: ScriptSharedReference[];<br />\\}</pre>";
|
|
242
|
+
readonly required: true;
|
|
243
|
+
}];
|
|
244
|
+
readonly returns: {
|
|
245
|
+
readonly type: "Object";
|
|
246
|
+
readonly name: "local.BrowsingContextLocateNodesResult";
|
|
247
|
+
readonly description: "Command return value with the following interface:\n ```ts\n {\n nodes: ScriptNodeRemoteValue[];\n }\n ```";
|
|
235
248
|
};
|
|
236
249
|
};
|
|
237
250
|
};
|
|
238
|
-
"browsingContext.
|
|
239
|
-
socket: {
|
|
240
|
-
command:
|
|
241
|
-
description:
|
|
242
|
-
ref:
|
|
243
|
-
parameters: {
|
|
244
|
-
name:
|
|
245
|
-
type:
|
|
246
|
-
description: string;
|
|
247
|
-
required:
|
|
248
|
-
}
|
|
249
|
-
returns: {
|
|
250
|
-
type:
|
|
251
|
-
name:
|
|
252
|
-
description: string;
|
|
251
|
+
readonly "browsingContext.navigate": {
|
|
252
|
+
readonly socket: {
|
|
253
|
+
readonly command: "browsingContextNavigate";
|
|
254
|
+
readonly description: "WebDriver Bidi command to send command method \"browsingContext.navigate\" with parameters.";
|
|
255
|
+
readonly ref: "https://w3c.github.io/webdriver-bidi/#command-browsingContext-navigate";
|
|
256
|
+
readonly parameters: readonly [{
|
|
257
|
+
readonly name: "params";
|
|
258
|
+
readonly type: "`remote.BrowsingContextNavigateParameters`";
|
|
259
|
+
readonly description: "<pre>\\{<br /> context: BrowsingContextBrowsingContext;<br /> url: string;<br /> wait?: BrowsingContextReadinessState;<br />\\}</pre>";
|
|
260
|
+
readonly required: true;
|
|
261
|
+
}];
|
|
262
|
+
readonly returns: {
|
|
263
|
+
readonly type: "Object";
|
|
264
|
+
readonly name: "local.BrowsingContextNavigateResult";
|
|
265
|
+
readonly description: "Command return value with the following interface:\n ```ts\n {\n navigation: BrowsingContextNavigation | null;\n url: string;\n }\n ```";
|
|
253
266
|
};
|
|
254
267
|
};
|
|
255
268
|
};
|
|
256
|
-
"browsingContext.
|
|
257
|
-
socket: {
|
|
258
|
-
command:
|
|
259
|
-
description:
|
|
260
|
-
ref:
|
|
261
|
-
parameters: {
|
|
262
|
-
name:
|
|
263
|
-
type:
|
|
264
|
-
description: string;
|
|
265
|
-
required:
|
|
266
|
-
}
|
|
267
|
-
|
|
268
|
-
|
|
269
|
-
|
|
270
|
-
|
|
271
|
-
command: string;
|
|
272
|
-
description: string;
|
|
273
|
-
ref: string;
|
|
274
|
-
parameters: {
|
|
275
|
-
name: string;
|
|
276
|
-
type: string;
|
|
277
|
-
description: string;
|
|
278
|
-
required: boolean;
|
|
279
|
-
}[];
|
|
280
|
-
};
|
|
281
|
-
};
|
|
282
|
-
"script.disown": {
|
|
283
|
-
socket: {
|
|
284
|
-
command: string;
|
|
285
|
-
description: string;
|
|
286
|
-
ref: string;
|
|
287
|
-
parameters: {
|
|
288
|
-
name: string;
|
|
289
|
-
type: string;
|
|
290
|
-
description: string;
|
|
291
|
-
required: boolean;
|
|
292
|
-
}[];
|
|
293
|
-
};
|
|
294
|
-
};
|
|
295
|
-
"script.callFunction": {
|
|
296
|
-
socket: {
|
|
297
|
-
command: string;
|
|
298
|
-
description: string;
|
|
299
|
-
ref: string;
|
|
300
|
-
parameters: {
|
|
301
|
-
name: string;
|
|
302
|
-
type: string;
|
|
303
|
-
description: string;
|
|
304
|
-
required: boolean;
|
|
305
|
-
}[];
|
|
306
|
-
};
|
|
307
|
-
};
|
|
308
|
-
"script.evaluate": {
|
|
309
|
-
socket: {
|
|
310
|
-
command: string;
|
|
311
|
-
description: string;
|
|
312
|
-
ref: string;
|
|
313
|
-
parameters: {
|
|
314
|
-
name: string;
|
|
315
|
-
type: string;
|
|
316
|
-
description: string;
|
|
317
|
-
required: boolean;
|
|
318
|
-
}[];
|
|
319
|
-
returns: {
|
|
320
|
-
type: string;
|
|
321
|
-
name: string;
|
|
322
|
-
description: string;
|
|
269
|
+
readonly "browsingContext.print": {
|
|
270
|
+
readonly socket: {
|
|
271
|
+
readonly command: "browsingContextPrint";
|
|
272
|
+
readonly description: "WebDriver Bidi command to send command method \"browsingContext.print\" with parameters.";
|
|
273
|
+
readonly ref: "https://w3c.github.io/webdriver-bidi/#command-browsingContext-print";
|
|
274
|
+
readonly parameters: readonly [{
|
|
275
|
+
readonly name: "params";
|
|
276
|
+
readonly type: "`remote.BrowsingContextPrintParameters`";
|
|
277
|
+
readonly description: "<pre>\\{<br /> context: BrowsingContextBrowsingContext;<br /> background?: boolean;<br /> margin?: BrowsingContextPrintMarginParameters;<br /> /\\*\\*<br /> \\* @default 'portrait'<br /> \\*/<br /> orientation?: \"portrait\" | \"landscape\";<br /> page?: BrowsingContextPrintPageParameters;<br /> pageRanges?: (JsUint | string)[];<br /> /\\*\\*<br /> \\* @default 1<br /> \\*/<br /> scale?: number;<br /> /\\*\\*<br /> \\* @default true<br /> \\*/<br /> shrinkToFit?: boolean;<br />\\}</pre>";
|
|
278
|
+
readonly required: true;
|
|
279
|
+
}];
|
|
280
|
+
readonly returns: {
|
|
281
|
+
readonly type: "Object";
|
|
282
|
+
readonly name: "local.BrowsingContextPrintResult";
|
|
283
|
+
readonly description: "Command return value with the following interface:\n ```ts\n {\n data: string;\n }\n ```";
|
|
323
284
|
};
|
|
324
285
|
};
|
|
325
286
|
};
|
|
326
|
-
"
|
|
327
|
-
socket: {
|
|
328
|
-
command:
|
|
329
|
-
description:
|
|
330
|
-
ref:
|
|
331
|
-
parameters: {
|
|
332
|
-
name:
|
|
333
|
-
type:
|
|
334
|
-
description:
|
|
335
|
-
required:
|
|
336
|
-
}
|
|
337
|
-
|
|
338
|
-
|
|
339
|
-
|
|
340
|
-
|
|
287
|
+
readonly "browsingContext.reload": {
|
|
288
|
+
readonly socket: {
|
|
289
|
+
readonly command: "browsingContextReload";
|
|
290
|
+
readonly description: "WebDriver Bidi command to send command method \"browsingContext.reload\" with parameters.";
|
|
291
|
+
readonly ref: "https://w3c.github.io/webdriver-bidi/#command-browsingContext-reload";
|
|
292
|
+
readonly parameters: readonly [{
|
|
293
|
+
readonly name: "params";
|
|
294
|
+
readonly type: "`remote.BrowsingContextReloadParameters`";
|
|
295
|
+
readonly description: "<pre>\\{<br /> context: BrowsingContextBrowsingContext;<br /> ignoreCache?: boolean;<br /> wait?: BrowsingContextReadinessState;<br />\\}</pre>";
|
|
296
|
+
readonly required: true;
|
|
297
|
+
}];
|
|
298
|
+
};
|
|
299
|
+
};
|
|
300
|
+
readonly "browsingContext.setViewport": {
|
|
301
|
+
readonly socket: {
|
|
302
|
+
readonly command: "browsingContextSetViewport";
|
|
303
|
+
readonly description: "WebDriver Bidi command to send command method \"browsingContext.setViewport\" with parameters.";
|
|
304
|
+
readonly ref: "https://w3c.github.io/webdriver-bidi/#command-browsingContext-setViewport";
|
|
305
|
+
readonly parameters: readonly [{
|
|
306
|
+
readonly name: "params";
|
|
307
|
+
readonly type: "`remote.BrowsingContextSetViewportParameters`";
|
|
308
|
+
readonly description: "<pre>\\{<br /> context: BrowsingContextBrowsingContext;<br /> viewport?: BrowsingContextViewport | null;<br /> devicePixelRatio?: number | null;<br />\\}</pre>";
|
|
309
|
+
readonly required: true;
|
|
310
|
+
}];
|
|
311
|
+
};
|
|
312
|
+
};
|
|
313
|
+
readonly "browsingContext.traverseHistory": {
|
|
314
|
+
readonly socket: {
|
|
315
|
+
readonly command: "browsingContextTraverseHistory";
|
|
316
|
+
readonly description: "WebDriver Bidi command to send command method \"browsingContext.traverseHistory\" with parameters.";
|
|
317
|
+
readonly ref: "https://w3c.github.io/webdriver-bidi/#command-browsingContext-traverseHistory";
|
|
318
|
+
readonly parameters: readonly [{
|
|
319
|
+
readonly name: "params";
|
|
320
|
+
readonly type: "`remote.BrowsingContextTraverseHistoryParameters`";
|
|
321
|
+
readonly description: "<pre>\\{<br /> context: BrowsingContextBrowsingContext;<br /> delta: JsInt;<br />\\}</pre>";
|
|
322
|
+
readonly required: true;
|
|
323
|
+
}];
|
|
324
|
+
};
|
|
325
|
+
};
|
|
326
|
+
readonly "network.addIntercept": {
|
|
327
|
+
readonly socket: {
|
|
328
|
+
readonly command: "networkAddIntercept";
|
|
329
|
+
readonly description: "WebDriver Bidi command to send command method \"network.addIntercept\" with parameters.";
|
|
330
|
+
readonly ref: "https://w3c.github.io/webdriver-bidi/#command-network-addIntercept";
|
|
331
|
+
readonly parameters: readonly [{
|
|
332
|
+
readonly name: "params";
|
|
333
|
+
readonly type: "`remote.NetworkAddInterceptParameters`";
|
|
334
|
+
readonly description: "<pre>\\{<br /> phases: NetworkInterceptPhase[];<br /> urlPatterns?: NetworkUrlPattern[];<br />\\}</pre>";
|
|
335
|
+
readonly required: true;
|
|
336
|
+
}];
|
|
337
|
+
readonly returns: {
|
|
338
|
+
readonly type: "Object";
|
|
339
|
+
readonly name: "local.NetworkAddInterceptResult";
|
|
340
|
+
readonly description: "Command return value with the following interface:\n ```ts\n {\n intercept: NetworkIntercept;\n }\n ```";
|
|
341
341
|
};
|
|
342
342
|
};
|
|
343
343
|
};
|
|
344
|
-
"
|
|
345
|
-
socket: {
|
|
346
|
-
command:
|
|
347
|
-
description:
|
|
348
|
-
ref:
|
|
349
|
-
parameters: {
|
|
350
|
-
name:
|
|
351
|
-
type:
|
|
352
|
-
description: string;
|
|
353
|
-
required:
|
|
354
|
-
}
|
|
355
|
-
};
|
|
356
|
-
};
|
|
357
|
-
"
|
|
358
|
-
socket: {
|
|
359
|
-
command:
|
|
360
|
-
description:
|
|
361
|
-
ref:
|
|
362
|
-
parameters: {
|
|
363
|
-
name:
|
|
364
|
-
type:
|
|
365
|
-
description: string;
|
|
366
|
-
required:
|
|
367
|
-
}
|
|
368
|
-
};
|
|
369
|
-
};
|
|
370
|
-
"
|
|
371
|
-
socket: {
|
|
372
|
-
command:
|
|
373
|
-
description:
|
|
374
|
-
ref:
|
|
375
|
-
parameters: {
|
|
376
|
-
name:
|
|
377
|
-
type:
|
|
378
|
-
description:
|
|
379
|
-
required:
|
|
380
|
-
}
|
|
344
|
+
readonly "network.continueRequest": {
|
|
345
|
+
readonly socket: {
|
|
346
|
+
readonly command: "networkContinueRequest";
|
|
347
|
+
readonly description: "WebDriver Bidi command to send command method \"network.continueRequest\" with parameters.";
|
|
348
|
+
readonly ref: "https://w3c.github.io/webdriver-bidi/#command-network-continueRequest";
|
|
349
|
+
readonly parameters: readonly [{
|
|
350
|
+
readonly name: "params";
|
|
351
|
+
readonly type: "`remote.NetworkContinueRequestParameters`";
|
|
352
|
+
readonly description: "<pre>\\{<br /> request: NetworkRequest;<br /> body?: NetworkBytesValue;<br /> cookies?: NetworkCookieHeader[];<br /> headers?: NetworkHeader[];<br /> method?: string;<br /> url?: string;<br />\\}</pre>";
|
|
353
|
+
readonly required: true;
|
|
354
|
+
}];
|
|
355
|
+
};
|
|
356
|
+
};
|
|
357
|
+
readonly "network.continueResponse": {
|
|
358
|
+
readonly socket: {
|
|
359
|
+
readonly command: "networkContinueResponse";
|
|
360
|
+
readonly description: "WebDriver Bidi command to send command method \"network.continueResponse\" with parameters.";
|
|
361
|
+
readonly ref: "https://w3c.github.io/webdriver-bidi/#command-network-continueResponse";
|
|
362
|
+
readonly parameters: readonly [{
|
|
363
|
+
readonly name: "params";
|
|
364
|
+
readonly type: "`remote.NetworkContinueResponseParameters`";
|
|
365
|
+
readonly description: "<pre>\\{<br /> request: NetworkRequest;<br /> cookies?: NetworkSetCookieHeader[];<br /> credentials?: NetworkAuthCredentials;<br /> headers?: NetworkHeader[];<br /> reasonPhrase?: string;<br /> statusCode?: JsUint;<br />\\}</pre>";
|
|
366
|
+
readonly required: true;
|
|
367
|
+
}];
|
|
368
|
+
};
|
|
369
|
+
};
|
|
370
|
+
readonly "network.continueWithAuth": {
|
|
371
|
+
readonly socket: {
|
|
372
|
+
readonly command: "networkContinueWithAuth";
|
|
373
|
+
readonly description: "WebDriver Bidi command to send command method \"network.continueWithAuth\" with parameters.";
|
|
374
|
+
readonly ref: "https://w3c.github.io/webdriver-bidi/#command-network-continueWithAuth";
|
|
375
|
+
readonly parameters: readonly [{
|
|
376
|
+
readonly name: "params";
|
|
377
|
+
readonly type: "`remote.NetworkContinueWithAuthParameters`";
|
|
378
|
+
readonly description: "<pre>\\{<br /> request: NetworkRequest;<br />\\}</pre>";
|
|
379
|
+
readonly required: true;
|
|
380
|
+
}];
|
|
381
|
+
};
|
|
382
|
+
};
|
|
383
|
+
readonly "network.failRequest": {
|
|
384
|
+
readonly socket: {
|
|
385
|
+
readonly command: "networkFailRequest";
|
|
386
|
+
readonly description: "WebDriver Bidi command to send command method \"network.failRequest\" with parameters.";
|
|
387
|
+
readonly ref: "https://w3c.github.io/webdriver-bidi/#command-network-failRequest";
|
|
388
|
+
readonly parameters: readonly [{
|
|
389
|
+
readonly name: "params";
|
|
390
|
+
readonly type: "`remote.NetworkFailRequestParameters`";
|
|
391
|
+
readonly description: "<pre>\\{<br /> request: NetworkRequest;<br />\\}</pre>";
|
|
392
|
+
readonly required: true;
|
|
393
|
+
}];
|
|
394
|
+
};
|
|
395
|
+
};
|
|
396
|
+
readonly "network.provideResponse": {
|
|
397
|
+
readonly socket: {
|
|
398
|
+
readonly command: "networkProvideResponse";
|
|
399
|
+
readonly description: "WebDriver Bidi command to send command method \"network.provideResponse\" with parameters.";
|
|
400
|
+
readonly ref: "https://w3c.github.io/webdriver-bidi/#command-network-provideResponse";
|
|
401
|
+
readonly parameters: readonly [{
|
|
402
|
+
readonly name: "params";
|
|
403
|
+
readonly type: "`remote.NetworkProvideResponseParameters`";
|
|
404
|
+
readonly description: "<pre>\\{<br /> request: NetworkRequest;<br /> body?: NetworkBytesValue;<br /> cookies?: NetworkSetCookieHeader[];<br /> headers?: NetworkHeader[];<br /> reasonPhrase?: string;<br /> statusCode?: JsUint;<br />\\}</pre>";
|
|
405
|
+
readonly required: true;
|
|
406
|
+
}];
|
|
407
|
+
};
|
|
408
|
+
};
|
|
409
|
+
readonly "network.removeIntercept": {
|
|
410
|
+
readonly socket: {
|
|
411
|
+
readonly command: "networkRemoveIntercept";
|
|
412
|
+
readonly description: "WebDriver Bidi command to send command method \"network.removeIntercept\" with parameters.";
|
|
413
|
+
readonly ref: "https://w3c.github.io/webdriver-bidi/#command-network-removeIntercept";
|
|
414
|
+
readonly parameters: readonly [{
|
|
415
|
+
readonly name: "params";
|
|
416
|
+
readonly type: "`remote.NetworkRemoveInterceptParameters`";
|
|
417
|
+
readonly description: "<pre>\\{<br /> intercept: NetworkIntercept;<br />\\}</pre>";
|
|
418
|
+
readonly required: true;
|
|
419
|
+
}];
|
|
420
|
+
};
|
|
421
|
+
};
|
|
422
|
+
readonly "script.addPreloadScript": {
|
|
423
|
+
readonly socket: {
|
|
424
|
+
readonly command: "scriptAddPreloadScript";
|
|
425
|
+
readonly description: "WebDriver Bidi command to send command method \"script.addPreloadScript\" with parameters.";
|
|
426
|
+
readonly ref: "https://w3c.github.io/webdriver-bidi/#command-script-addPreloadScript";
|
|
427
|
+
readonly parameters: readonly [{
|
|
428
|
+
readonly name: "params";
|
|
429
|
+
readonly type: "`remote.ScriptAddPreloadScriptParameters`";
|
|
430
|
+
readonly description: "<pre>\\{<br /> functionDeclaration: string;<br /> arguments?: ScriptChannelValue[];<br /> contexts?: BrowsingContextBrowsingContext[];<br /> sandbox?: string;<br />\\}</pre>";
|
|
431
|
+
readonly required: true;
|
|
432
|
+
}];
|
|
433
|
+
readonly returns: {
|
|
434
|
+
readonly type: "Object";
|
|
435
|
+
readonly name: "local.ScriptAddPreloadScriptResult";
|
|
436
|
+
readonly description: "Command return value with the following interface:\n ```ts\n {\n script: ScriptPreloadScript;\n }\n ```";
|
|
437
|
+
};
|
|
438
|
+
};
|
|
439
|
+
};
|
|
440
|
+
readonly "script.disown": {
|
|
441
|
+
readonly socket: {
|
|
442
|
+
readonly command: "scriptDisown";
|
|
443
|
+
readonly description: "WebDriver Bidi command to send command method \"script.disown\" with parameters.";
|
|
444
|
+
readonly ref: "https://w3c.github.io/webdriver-bidi/#command-script-disown";
|
|
445
|
+
readonly parameters: readonly [{
|
|
446
|
+
readonly name: "params";
|
|
447
|
+
readonly type: "`remote.ScriptDisownParameters`";
|
|
448
|
+
readonly description: "<pre>\\{<br /> handles: ScriptHandle[];<br /> target: ScriptTarget;<br />\\}</pre>";
|
|
449
|
+
readonly required: true;
|
|
450
|
+
}];
|
|
451
|
+
};
|
|
452
|
+
};
|
|
453
|
+
readonly "script.callFunction": {
|
|
454
|
+
readonly socket: {
|
|
455
|
+
readonly command: "scriptCallFunction";
|
|
456
|
+
readonly description: "WebDriver Bidi command to send command method \"script.callFunction\" with parameters.";
|
|
457
|
+
readonly ref: "https://w3c.github.io/webdriver-bidi/#command-script-callFunction";
|
|
458
|
+
readonly parameters: readonly [{
|
|
459
|
+
readonly name: "params";
|
|
460
|
+
readonly type: "`remote.ScriptCallFunctionParameters`";
|
|
461
|
+
readonly description: "<pre>\\{<br /> functionDeclaration: string;<br /> awaitPromise: boolean;<br /> target: ScriptTarget;<br /> arguments?: ScriptLocalValue[];<br /> resultOwnership?: ScriptResultOwnership;<br /> serializationOptions?: ScriptSerializationOptions;<br /> this?: ScriptLocalValue;<br /> userActivation?: boolean;<br />\\}</pre>";
|
|
462
|
+
readonly required: true;
|
|
463
|
+
}];
|
|
464
|
+
};
|
|
465
|
+
};
|
|
466
|
+
readonly "script.evaluate": {
|
|
467
|
+
readonly socket: {
|
|
468
|
+
readonly command: "scriptEvaluate";
|
|
469
|
+
readonly description: "WebDriver Bidi command to send command method \"script.evaluate\" with parameters.";
|
|
470
|
+
readonly ref: "https://w3c.github.io/webdriver-bidi/#command-script-evaluate";
|
|
471
|
+
readonly parameters: readonly [{
|
|
472
|
+
readonly name: "params";
|
|
473
|
+
readonly type: "`remote.ScriptEvaluateParameters`";
|
|
474
|
+
readonly description: "<pre>\\{<br /> expression: string;<br /> target: ScriptTarget;<br /> awaitPromise: boolean;<br /> resultOwnership?: ScriptResultOwnership;<br /> serializationOptions?: ScriptSerializationOptions;<br /> userActivation?: boolean;<br />\\}</pre>";
|
|
475
|
+
readonly required: true;
|
|
476
|
+
}];
|
|
477
|
+
readonly returns: {
|
|
478
|
+
readonly type: "Object";
|
|
479
|
+
readonly name: "local.ScriptEvaluateResult";
|
|
480
|
+
readonly description: "Command return value with the following interface:\n ```ts\n ;\n ```";
|
|
481
|
+
};
|
|
482
|
+
};
|
|
483
|
+
};
|
|
484
|
+
readonly "script.getRealms": {
|
|
485
|
+
readonly socket: {
|
|
486
|
+
readonly command: "scriptGetRealms";
|
|
487
|
+
readonly description: "WebDriver Bidi command to send command method \"script.getRealms\" with parameters.";
|
|
488
|
+
readonly ref: "https://w3c.github.io/webdriver-bidi/#command-script-getRealms";
|
|
489
|
+
readonly parameters: readonly [{
|
|
490
|
+
readonly name: "params";
|
|
491
|
+
readonly type: "`remote.ScriptGetRealmsParameters`";
|
|
492
|
+
readonly description: "<pre>\\{<br /> context?: BrowsingContextBrowsingContext;<br /> type?: ScriptRealmType;<br />\\}</pre>";
|
|
493
|
+
readonly required: true;
|
|
494
|
+
}];
|
|
495
|
+
readonly returns: {
|
|
496
|
+
readonly type: "Object";
|
|
497
|
+
readonly name: "local.ScriptGetRealmsResult";
|
|
498
|
+
readonly description: "Command return value with the following interface:\n ```ts\n {\n realms: ScriptRealmInfo[];\n }\n ```";
|
|
499
|
+
};
|
|
500
|
+
};
|
|
501
|
+
};
|
|
502
|
+
readonly "script.removePreloadScript": {
|
|
503
|
+
readonly socket: {
|
|
504
|
+
readonly command: "scriptRemovePreloadScript";
|
|
505
|
+
readonly description: "WebDriver Bidi command to send command method \"script.removePreloadScript\" with parameters.";
|
|
506
|
+
readonly ref: "https://w3c.github.io/webdriver-bidi/#command-script-removePreloadScript";
|
|
507
|
+
readonly parameters: readonly [{
|
|
508
|
+
readonly name: "params";
|
|
509
|
+
readonly type: "`remote.ScriptRemovePreloadScriptParameters`";
|
|
510
|
+
readonly description: "<pre>\\{<br /> script: ScriptPreloadScript;<br />\\}</pre>";
|
|
511
|
+
readonly required: true;
|
|
512
|
+
}];
|
|
513
|
+
};
|
|
514
|
+
};
|
|
515
|
+
readonly "input.performActions": {
|
|
516
|
+
readonly socket: {
|
|
517
|
+
readonly command: "inputPerformActions";
|
|
518
|
+
readonly description: "WebDriver Bidi command to send command method \"input.performActions\" with parameters.";
|
|
519
|
+
readonly ref: "https://w3c.github.io/webdriver-bidi/#command-input-performActions";
|
|
520
|
+
readonly parameters: readonly [{
|
|
521
|
+
readonly name: "params";
|
|
522
|
+
readonly type: "`remote.InputPerformActionsParameters`";
|
|
523
|
+
readonly description: "<pre>\\{<br /> context: BrowsingContextBrowsingContext;<br /> actions: InputSourceActions[];<br />\\}</pre>";
|
|
524
|
+
readonly required: true;
|
|
525
|
+
}];
|
|
526
|
+
};
|
|
527
|
+
};
|
|
528
|
+
readonly "input.releaseActions": {
|
|
529
|
+
readonly socket: {
|
|
530
|
+
readonly command: "inputReleaseActions";
|
|
531
|
+
readonly description: "WebDriver Bidi command to send command method \"input.releaseActions\" with parameters.";
|
|
532
|
+
readonly ref: "https://w3c.github.io/webdriver-bidi/#command-input-releaseActions";
|
|
533
|
+
readonly parameters: readonly [{
|
|
534
|
+
readonly name: "params";
|
|
535
|
+
readonly type: "`remote.InputReleaseActionsParameters`";
|
|
536
|
+
readonly description: "<pre>\\{<br /> context: BrowsingContextBrowsingContext;<br />\\}</pre>";
|
|
537
|
+
readonly required: true;
|
|
538
|
+
}];
|
|
381
539
|
};
|
|
382
540
|
};
|
|
383
541
|
};
|
|
384
|
-
export default
|
|
542
|
+
export default protocol;
|
|
385
543
|
//# sourceMappingURL=webdriverBidi.d.ts.map
|