webdriver 9.26.1 → 9.27.1

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.
@@ -34,30 +34,30 @@ export declare class BidiHandler extends BidiCore {
34
34
  * WebDriver Bidi command to send command method "session.end" with parameters.
35
35
  * @url https://w3c.github.io/webdriver-bidi/#command-session-end
36
36
  * @param params `remote.EmptyParams` {@link https://w3c.github.io/webdriver-bidi/#command-session-end | command parameter}
37
- * @returns `Promise<local.EmptyResult>`
37
+ * @returns `Promise<local.SessionEndResult>`
38
38
  **/
39
- sessionEnd(params: remote.EmptyParams): Promise<local.EmptyResult>;
39
+ sessionEnd(params: remote.EmptyParams): Promise<local.SessionEndResult>;
40
40
  /**
41
41
  * WebDriver Bidi command to send command method "session.subscribe" with parameters.
42
42
  * @url https://w3c.github.io/webdriver-bidi/#command-session-subscribe
43
- * @param params `remote.SessionSubscriptionRequest` {@link https://w3c.github.io/webdriver-bidi/#command-session-subscribe | command parameter}
43
+ * @param params `remote.SessionSubscribeParameters` {@link https://w3c.github.io/webdriver-bidi/#command-session-subscribe | command parameter}
44
44
  * @returns `Promise<local.SessionSubscribeResult>`
45
45
  **/
46
- sessionSubscribe(params: remote.SessionSubscriptionRequest): Promise<local.SessionSubscribeResult>;
46
+ sessionSubscribe(params: remote.SessionSubscribeParameters | remote.SessionSubscriptionRequest): Promise<local.SessionSubscribeResult>;
47
47
  /**
48
48
  * WebDriver Bidi command to send command method "session.unsubscribe" with parameters.
49
49
  * @url https://w3c.github.io/webdriver-bidi/#command-session-unsubscribe
50
50
  * @param params `remote.SessionUnsubscribeParameters` {@link https://w3c.github.io/webdriver-bidi/#command-session-unsubscribe | command parameter}
51
- * @returns `Promise<local.EmptyResult>`
51
+ * @returns `Promise<local.SessionUnsubscribeResult>`
52
52
  **/
53
- sessionUnsubscribe(params: remote.SessionUnsubscribeParameters): Promise<local.EmptyResult>;
53
+ sessionUnsubscribe(params: remote.SessionUnsubscribeParameters): Promise<local.SessionUnsubscribeResult>;
54
54
  /**
55
55
  * WebDriver Bidi command to send command method "browser.close" with parameters.
56
56
  * @url https://w3c.github.io/webdriver-bidi/#command-browser-close
57
57
  * @param params `remote.EmptyParams` {@link https://w3c.github.io/webdriver-bidi/#command-browser-close | command parameter}
58
- * @returns `Promise<local.EmptyResult>`
58
+ * @returns `Promise<local.BrowserCloseResult>`
59
59
  **/
60
- browserClose(params: remote.EmptyParams): Promise<local.EmptyResult>;
60
+ browserClose(params: remote.EmptyParams): Promise<local.BrowserCloseResult>;
61
61
  /**
62
62
  * WebDriver Bidi command to send command method "browser.createUserContext" with parameters.
63
63
  * @url https://w3c.github.io/webdriver-bidi/#command-browser-createUserContext
@@ -83,23 +83,30 @@ export declare class BidiHandler extends BidiCore {
83
83
  * WebDriver Bidi command to send command method "browser.removeUserContext" with parameters.
84
84
  * @url https://w3c.github.io/webdriver-bidi/#command-browser-removeUserContext
85
85
  * @param params `remote.BrowserRemoveUserContextParameters` {@link https://w3c.github.io/webdriver-bidi/#command-browser-removeUserContext | command parameter}
86
- * @returns `Promise<local.EmptyResult>`
86
+ * @returns `Promise<local.BrowserRemoveUserContextResult>`
87
87
  **/
88
- browserRemoveUserContext(params: remote.BrowserRemoveUserContextParameters): Promise<local.EmptyResult>;
88
+ browserRemoveUserContext(params: remote.BrowserRemoveUserContextParameters): Promise<local.BrowserRemoveUserContextResult>;
89
89
  /**
90
90
  * WebDriver Bidi command to send command method "browser.setClientWindowState" with parameters.
91
91
  * @url https://w3c.github.io/webdriver-bidi/#command-browser-setClientWindowState
92
92
  * @param params `remote.BrowserSetClientWindowStateParameters` {@link https://w3c.github.io/webdriver-bidi/#command-browser-setClientWindowState | command parameter}
93
- * @returns `Promise<local.EmptyResult>`
93
+ * @returns `Promise<local.BrowserSetClientWindowStateResult>`
94
94
  **/
95
- browserSetClientWindowState(params: remote.BrowserSetClientWindowStateParameters): Promise<local.EmptyResult>;
95
+ browserSetClientWindowState(params: remote.BrowserSetClientWindowStateParameters): Promise<local.BrowserSetClientWindowStateResult>;
96
+ /**
97
+ * WebDriver Bidi command to send command method "browser.setDownloadBehavior" with parameters.
98
+ * @url https://w3c.github.io/webdriver-bidi/#command-browser-setDownloadBehavior
99
+ * @param params `remote.BrowserSetDownloadBehaviorParameters` {@link https://w3c.github.io/webdriver-bidi/#command-browser-setDownloadBehavior | command parameter}
100
+ * @returns `Promise<local.BrowserSetDownloadBehaviorResult>`
101
+ **/
102
+ browserSetDownloadBehavior(params: remote.BrowserSetDownloadBehaviorParameters): Promise<local.BrowserSetDownloadBehaviorResult>;
96
103
  /**
97
104
  * WebDriver Bidi command to send command method "browsingContext.activate" with parameters.
98
105
  * @url https://w3c.github.io/webdriver-bidi/#command-browsingContext-activate
99
106
  * @param params `remote.BrowsingContextActivateParameters` {@link https://w3c.github.io/webdriver-bidi/#command-browsingContext-activate | command parameter}
100
- * @returns `Promise<local.EmptyResult>`
107
+ * @returns `Promise<local.BrowsingContextActivateResult>`
101
108
  **/
102
- browsingContextActivate(params: remote.BrowsingContextActivateParameters): Promise<local.EmptyResult>;
109
+ browsingContextActivate(params: remote.BrowsingContextActivateParameters): Promise<local.BrowsingContextActivateResult>;
103
110
  /**
104
111
  * WebDriver Bidi command to send command method "browsingContext.captureScreenshot" with parameters.
105
112
  * @url https://w3c.github.io/webdriver-bidi/#command-browsingContext-captureScreenshot
@@ -111,9 +118,9 @@ export declare class BidiHandler extends BidiCore {
111
118
  * WebDriver Bidi command to send command method "browsingContext.close" with parameters.
112
119
  * @url https://w3c.github.io/webdriver-bidi/#command-browsingContext-close
113
120
  * @param params `remote.BrowsingContextCloseParameters` {@link https://w3c.github.io/webdriver-bidi/#command-browsingContext-close | command parameter}
114
- * @returns `Promise<local.EmptyResult>`
121
+ * @returns `Promise<local.BrowsingContextCloseResult>`
115
122
  **/
116
- browsingContextClose(params: remote.BrowsingContextCloseParameters): Promise<local.EmptyResult>;
123
+ browsingContextClose(params: remote.BrowsingContextCloseParameters): Promise<local.BrowsingContextCloseResult>;
117
124
  /**
118
125
  * WebDriver Bidi command to send command method "browsingContext.create" with parameters.
119
126
  * @url https://w3c.github.io/webdriver-bidi/#command-browsingContext-create
@@ -132,9 +139,9 @@ export declare class BidiHandler extends BidiCore {
132
139
  * WebDriver Bidi command to send command method "browsingContext.handleUserPrompt" with parameters.
133
140
  * @url https://w3c.github.io/webdriver-bidi/#command-browsingContext-handleUserPrompt
134
141
  * @param params `remote.BrowsingContextHandleUserPromptParameters` {@link https://w3c.github.io/webdriver-bidi/#command-browsingContext-handleUserPrompt | command parameter}
135
- * @returns `Promise<local.EmptyResult>`
142
+ * @returns `Promise<local.BrowsingContextHandleUserPromptResult>`
136
143
  **/
137
- browsingContextHandleUserPrompt(params: remote.BrowsingContextHandleUserPromptParameters): Promise<local.EmptyResult>;
144
+ browsingContextHandleUserPrompt(params: remote.BrowsingContextHandleUserPromptParameters): Promise<local.BrowsingContextHandleUserPromptResult>;
138
145
  /**
139
146
  * WebDriver Bidi command to send command method "browsingContext.locateNodes" with parameters.
140
147
  * @url https://w3c.github.io/webdriver-bidi/#command-browsingContext-locateNodes
@@ -160,16 +167,23 @@ export declare class BidiHandler extends BidiCore {
160
167
  * WebDriver Bidi command to send command method "browsingContext.reload" with parameters.
161
168
  * @url https://w3c.github.io/webdriver-bidi/#command-browsingContext-reload
162
169
  * @param params `remote.BrowsingContextReloadParameters` {@link https://w3c.github.io/webdriver-bidi/#command-browsingContext-reload | command parameter}
163
- * @returns `Promise<local.EmptyResult>`
170
+ * @returns `Promise<local.BrowsingContextReloadResult>`
164
171
  **/
165
- browsingContextReload(params: remote.BrowsingContextReloadParameters): Promise<local.EmptyResult>;
172
+ browsingContextReload(params: remote.BrowsingContextReloadParameters): Promise<local.BrowsingContextReloadResult>;
173
+ /**
174
+ * WebDriver Bidi command to send command method "browsingContext.setBypassCSP" with parameters.
175
+ * @url https://w3c.github.io/webdriver-bidi/#command-browsingContext-setBypassCSP
176
+ * @param params `remote.BrowsingContextSetBypassCspParameters` {@link https://w3c.github.io/webdriver-bidi/#command-browsingContext-setBypassCSP | command parameter}
177
+ * @returns `Promise<local.BrowsingContextSetBypassCspResult>`
178
+ **/
179
+ browsingContextSetBypassCsp(params: remote.BrowsingContextSetBypassCspParameters): Promise<local.BrowsingContextSetBypassCspResult>;
166
180
  /**
167
181
  * WebDriver Bidi command to send command method "browsingContext.setViewport" with parameters.
168
182
  * @url https://w3c.github.io/webdriver-bidi/#command-browsingContext-setViewport
169
183
  * @param params `remote.BrowsingContextSetViewportParameters` {@link https://w3c.github.io/webdriver-bidi/#command-browsingContext-setViewport | command parameter}
170
- * @returns `Promise<local.EmptyResult>`
184
+ * @returns `Promise<local.BrowsingContextSetViewportResult>`
171
185
  **/
172
- browsingContextSetViewport(params: remote.BrowsingContextSetViewportParameters): Promise<local.EmptyResult>;
186
+ browsingContextSetViewport(params: remote.BrowsingContextSetViewportParameters): Promise<local.BrowsingContextSetViewportResult>;
173
187
  /**
174
188
  * WebDriver Bidi command to send command method "browsingContext.traverseHistory" with parameters.
175
189
  * @url https://w3c.github.io/webdriver-bidi/#command-browsingContext-traverseHistory
@@ -177,13 +191,90 @@ export declare class BidiHandler extends BidiCore {
177
191
  * @returns `Promise<local.BrowsingContextTraverseHistoryResult>`
178
192
  **/
179
193
  browsingContextTraverseHistory(params: remote.BrowsingContextTraverseHistoryParameters): Promise<local.BrowsingContextTraverseHistoryResult>;
194
+ /**
195
+ * WebDriver Bidi command to send command method "emulation.setForcedColorsModeThemeOverride" with parameters.
196
+ * @url https://w3c.github.io/webdriver-bidi/#command-emulation-setForcedColorsModeThemeOverride
197
+ * @param params `remote.EmulationSetForcedColorsModeThemeOverrideParameters` {@link https://w3c.github.io/webdriver-bidi/#command-emulation-setForcedColorsModeThemeOverride | command parameter}
198
+ * @returns `Promise<local.EmulationSetForcedColorsModeThemeOverrideResult>`
199
+ **/
200
+ emulationSetForcedColorsModeThemeOverride(params: remote.EmulationSetForcedColorsModeThemeOverrideParameters): Promise<local.EmulationSetForcedColorsModeThemeOverrideResult>;
180
201
  /**
181
202
  * WebDriver Bidi command to send command method "emulation.setGeolocationOverride" with parameters.
182
203
  * @url https://w3c.github.io/webdriver-bidi/#command-emulation-setGeolocationOverride
183
204
  * @param params `remote.EmulationSetGeolocationOverrideParameters` {@link https://w3c.github.io/webdriver-bidi/#command-emulation-setGeolocationOverride | command parameter}
184
- * @returns `Promise<local.EmptyResult>`
205
+ * @returns `Promise<local.EmulationSetGeolocationOverrideResult>`
206
+ **/
207
+ emulationSetGeolocationOverride(params: remote.EmulationSetGeolocationOverrideParameters): Promise<local.EmulationSetGeolocationOverrideResult>;
208
+ /**
209
+ * WebDriver Bidi command to send command method "emulation.setLocaleOverride" with parameters.
210
+ * @url https://w3c.github.io/webdriver-bidi/#command-emulation-setLocaleOverride
211
+ * @param params `remote.EmulationSetLocaleOverrideParameters` {@link https://w3c.github.io/webdriver-bidi/#command-emulation-setLocaleOverride | command parameter}
212
+ * @returns `Promise<local.EmulationSetLocaleOverrideResult>`
213
+ **/
214
+ emulationSetLocaleOverride(params: remote.EmulationSetLocaleOverrideParameters): Promise<local.EmulationSetLocaleOverrideResult>;
215
+ /**
216
+ * WebDriver Bidi command to send command method "emulation.setNetworkConditions" with parameters.
217
+ * @url https://w3c.github.io/webdriver-bidi/#command-emulation-setNetworkConditions
218
+ * @param params `remote.EmulationSetNetworkConditionsParameters` {@link https://w3c.github.io/webdriver-bidi/#command-emulation-setNetworkConditions | command parameter}
219
+ * @returns `Promise<local.EmulationSetNetworkConditionsResult>`
220
+ **/
221
+ emulationSetNetworkConditions(params: remote.EmulationSetNetworkConditionsParameters): Promise<local.EmulationSetNetworkConditionsResult>;
222
+ /**
223
+ * WebDriver Bidi command to send command method "emulation.setScreenSettingsOverride" with parameters.
224
+ * @url https://w3c.github.io/webdriver-bidi/#command-emulation-setScreenSettingsOverride
225
+ * @param params `remote.EmulationSetScreenSettingsOverrideParameters` {@link https://w3c.github.io/webdriver-bidi/#command-emulation-setScreenSettingsOverride | command parameter}
226
+ * @returns `Promise<local.EmulationSetScreenSettingsOverrideResult>`
227
+ **/
228
+ emulationSetScreenSettingsOverride(params: remote.EmulationSetScreenSettingsOverrideParameters): Promise<local.EmulationSetScreenSettingsOverrideResult>;
229
+ /**
230
+ * WebDriver Bidi command to send command method "emulation.setScreenOrientationOverride" with parameters.
231
+ * @url https://w3c.github.io/webdriver-bidi/#command-emulation-setScreenOrientationOverride
232
+ * @param params `remote.EmulationSetScreenOrientationOverrideParameters` {@link https://w3c.github.io/webdriver-bidi/#command-emulation-setScreenOrientationOverride | command parameter}
233
+ * @returns `Promise<local.EmulationSetScreenOrientationOverrideResult>`
234
+ **/
235
+ emulationSetScreenOrientationOverride(params: remote.EmulationSetScreenOrientationOverrideParameters): Promise<local.EmulationSetScreenOrientationOverrideResult>;
236
+ /**
237
+ * WebDriver Bidi command to send command method "emulation.setUserAgentOverride" with parameters.
238
+ * @url https://w3c.github.io/webdriver-bidi/#command-emulation-setUserAgentOverride
239
+ * @param params `remote.EmulationSetUserAgentOverrideParameters` {@link https://w3c.github.io/webdriver-bidi/#command-emulation-setUserAgentOverride | command parameter}
240
+ * @returns `Promise<local.EmulationSetUserAgentOverrideResult>`
241
+ **/
242
+ emulationSetUserAgentOverride(params: remote.EmulationSetUserAgentOverrideParameters): Promise<local.EmulationSetUserAgentOverrideResult>;
243
+ /**
244
+ * WebDriver Bidi command to send command method "emulation.setScriptingEnabled" with parameters.
245
+ * @url https://w3c.github.io/webdriver-bidi/#command-emulation-setScriptingEnabled
246
+ * @param params `remote.EmulationSetScriptingEnabledParameters` {@link https://w3c.github.io/webdriver-bidi/#command-emulation-setScriptingEnabled | command parameter}
247
+ * @returns `Promise<local.EmulationSetScriptingEnabledResult>`
248
+ **/
249
+ emulationSetScriptingEnabled(params: remote.EmulationSetScriptingEnabledParameters): Promise<local.EmulationSetScriptingEnabledResult>;
250
+ /**
251
+ * WebDriver Bidi command to send command method "emulation.setScrollbarTypeOverride" with parameters.
252
+ * @url https://w3c.github.io/webdriver-bidi/#command-emulation-setScrollbarTypeOverride
253
+ * @param params `remote.EmulationSetScrollbarTypeOverrideParameters` {@link https://w3c.github.io/webdriver-bidi/#command-emulation-setScrollbarTypeOverride | command parameter}
254
+ * @returns `Promise<local.EmulationSetScrollbarTypeOverrideResult>`
255
+ **/
256
+ emulationSetScrollbarTypeOverride(params: remote.EmulationSetScrollbarTypeOverrideParameters): Promise<local.EmulationSetScrollbarTypeOverrideResult>;
257
+ /**
258
+ * WebDriver Bidi command to send command method "emulation.setTimezoneOverride" with parameters.
259
+ * @url https://w3c.github.io/webdriver-bidi/#command-emulation-setTimezoneOverride
260
+ * @param params `remote.EmulationSetTimezoneOverrideParameters` {@link https://w3c.github.io/webdriver-bidi/#command-emulation-setTimezoneOverride | command parameter}
261
+ * @returns `Promise<local.EmulationSetTimezoneOverrideResult>`
262
+ **/
263
+ emulationSetTimezoneOverride(params: remote.EmulationSetTimezoneOverrideParameters): Promise<local.EmulationSetTimezoneOverrideResult>;
264
+ /**
265
+ * WebDriver Bidi command to send command method "emulation.setTouchOverride" with parameters.
266
+ * @url https://w3c.github.io/webdriver-bidi/#command-emulation-setTouchOverride
267
+ * @param params `remote.EmulationSetTouchOverrideParameters` {@link https://w3c.github.io/webdriver-bidi/#command-emulation-setTouchOverride | command parameter}
268
+ * @returns `Promise<local.EmulationSetTouchOverrideResult>`
269
+ **/
270
+ emulationSetTouchOverride(params: remote.EmulationSetTouchOverrideParameters): Promise<local.EmulationSetTouchOverrideResult>;
271
+ /**
272
+ * WebDriver Bidi command to send command method "network.addDataCollector" with parameters.
273
+ * @url https://w3c.github.io/webdriver-bidi/#command-network-addDataCollector
274
+ * @param params `remote.NetworkAddDataCollectorParameters` {@link https://w3c.github.io/webdriver-bidi/#command-network-addDataCollector | command parameter}
275
+ * @returns `Promise<local.NetworkAddDataCollectorResult>`
185
276
  **/
186
- emulationSetGeolocationOverride(params: remote.EmulationSetGeolocationOverrideParameters): Promise<local.EmptyResult>;
277
+ networkAddDataCollector(params: remote.NetworkAddDataCollectorParameters): Promise<local.NetworkAddDataCollectorResult>;
187
278
  /**
188
279
  * WebDriver Bidi command to send command method "network.addIntercept" with parameters.
189
280
  * @url https://w3c.github.io/webdriver-bidi/#command-network-addIntercept
@@ -195,51 +286,79 @@ export declare class BidiHandler extends BidiCore {
195
286
  * WebDriver Bidi command to send command method "network.continueRequest" with parameters.
196
287
  * @url https://w3c.github.io/webdriver-bidi/#command-network-continueRequest
197
288
  * @param params `remote.NetworkContinueRequestParameters` {@link https://w3c.github.io/webdriver-bidi/#command-network-continueRequest | command parameter}
198
- * @returns `Promise<local.EmptyResult>`
289
+ * @returns `Promise<local.NetworkContinueRequestResult>`
199
290
  **/
200
- networkContinueRequest(params: remote.NetworkContinueRequestParameters): Promise<local.EmptyResult>;
291
+ networkContinueRequest(params: remote.NetworkContinueRequestParameters): Promise<local.NetworkContinueRequestResult>;
201
292
  /**
202
293
  * WebDriver Bidi command to send command method "network.continueResponse" with parameters.
203
294
  * @url https://w3c.github.io/webdriver-bidi/#command-network-continueResponse
204
295
  * @param params `remote.NetworkContinueResponseParameters` {@link https://w3c.github.io/webdriver-bidi/#command-network-continueResponse | command parameter}
205
- * @returns `Promise<local.EmptyResult>`
296
+ * @returns `Promise<local.NetworkContinueResponseResult>`
206
297
  **/
207
- networkContinueResponse(params: remote.NetworkContinueResponseParameters): Promise<local.EmptyResult>;
298
+ networkContinueResponse(params: remote.NetworkContinueResponseParameters): Promise<local.NetworkContinueResponseResult>;
208
299
  /**
209
300
  * WebDriver Bidi command to send command method "network.continueWithAuth" with parameters.
210
301
  * @url https://w3c.github.io/webdriver-bidi/#command-network-continueWithAuth
211
302
  * @param params `remote.NetworkContinueWithAuthParameters` {@link https://w3c.github.io/webdriver-bidi/#command-network-continueWithAuth | command parameter}
212
- * @returns `Promise<local.EmptyResult>`
303
+ * @returns `Promise<local.NetworkContinueWithAuthResult>`
213
304
  **/
214
- networkContinueWithAuth(params: remote.NetworkContinueWithAuthParameters): Promise<local.EmptyResult>;
305
+ networkContinueWithAuth(params: remote.NetworkContinueWithAuthParameters): Promise<local.NetworkContinueWithAuthResult>;
306
+ /**
307
+ * WebDriver Bidi command to send command method "network.disownData" with parameters.
308
+ * @url https://w3c.github.io/webdriver-bidi/#command-network-disownData
309
+ * @param params `remote.NetworkDisownDataParameters` {@link https://w3c.github.io/webdriver-bidi/#command-network-disownData | command parameter}
310
+ * @returns `Promise<local.NetworkDisownDataResult>`
311
+ **/
312
+ networkDisownData(params: remote.NetworkDisownDataParameters): Promise<local.NetworkDisownDataResult>;
215
313
  /**
216
314
  * WebDriver Bidi command to send command method "network.failRequest" with parameters.
217
315
  * @url https://w3c.github.io/webdriver-bidi/#command-network-failRequest
218
316
  * @param params `remote.NetworkFailRequestParameters` {@link https://w3c.github.io/webdriver-bidi/#command-network-failRequest | command parameter}
219
- * @returns `Promise<local.EmptyResult>`
317
+ * @returns `Promise<local.NetworkFailRequestResult>`
318
+ **/
319
+ networkFailRequest(params: remote.NetworkFailRequestParameters): Promise<local.NetworkFailRequestResult>;
320
+ /**
321
+ * WebDriver Bidi command to send command method "network.getData" with parameters.
322
+ * @url https://w3c.github.io/webdriver-bidi/#command-network-getData
323
+ * @param params `remote.NetworkGetDataParameters` {@link https://w3c.github.io/webdriver-bidi/#command-network-getData | command parameter}
324
+ * @returns `Promise<local.NetworkGetDataResult>`
220
325
  **/
221
- networkFailRequest(params: remote.NetworkFailRequestParameters): Promise<local.EmptyResult>;
326
+ networkGetData(params: remote.NetworkGetDataParameters): Promise<local.NetworkGetDataResult>;
222
327
  /**
223
328
  * WebDriver Bidi command to send command method "network.provideResponse" with parameters.
224
329
  * @url https://w3c.github.io/webdriver-bidi/#command-network-provideResponse
225
330
  * @param params `remote.NetworkProvideResponseParameters` {@link https://w3c.github.io/webdriver-bidi/#command-network-provideResponse | command parameter}
226
- * @returns `Promise<local.EmptyResult>`
331
+ * @returns `Promise<local.NetworkProvideResponseResult>`
227
332
  **/
228
- networkProvideResponse(params: remote.NetworkProvideResponseParameters): Promise<local.EmptyResult>;
333
+ networkProvideResponse(params: remote.NetworkProvideResponseParameters): Promise<local.NetworkProvideResponseResult>;
334
+ /**
335
+ * WebDriver Bidi command to send command method "network.removeDataCollector" with parameters.
336
+ * @url https://w3c.github.io/webdriver-bidi/#command-network-removeDataCollector
337
+ * @param params `remote.NetworkRemoveDataCollectorParameters` {@link https://w3c.github.io/webdriver-bidi/#command-network-removeDataCollector | command parameter}
338
+ * @returns `Promise<local.NetworkRemoveDataCollectorResult>`
339
+ **/
340
+ networkRemoveDataCollector(params: remote.NetworkRemoveDataCollectorParameters): Promise<local.NetworkRemoveDataCollectorResult>;
229
341
  /**
230
342
  * WebDriver Bidi command to send command method "network.removeIntercept" with parameters.
231
343
  * @url https://w3c.github.io/webdriver-bidi/#command-network-removeIntercept
232
344
  * @param params `remote.NetworkRemoveInterceptParameters` {@link https://w3c.github.io/webdriver-bidi/#command-network-removeIntercept | command parameter}
233
- * @returns `Promise<local.EmptyResult>`
345
+ * @returns `Promise<local.NetworkRemoveInterceptResult>`
234
346
  **/
235
- networkRemoveIntercept(params: remote.NetworkRemoveInterceptParameters): Promise<local.EmptyResult>;
347
+ networkRemoveIntercept(params: remote.NetworkRemoveInterceptParameters): Promise<local.NetworkRemoveInterceptResult>;
236
348
  /**
237
349
  * WebDriver Bidi command to send command method "network.setCacheBehavior" with parameters.
238
350
  * @url https://w3c.github.io/webdriver-bidi/#command-network-setCacheBehavior
239
351
  * @param params `remote.NetworkSetCacheBehaviorParameters` {@link https://w3c.github.io/webdriver-bidi/#command-network-setCacheBehavior | command parameter}
240
- * @returns `Promise<local.EmptyResult>`
352
+ * @returns `Promise<local.NetworkSetCacheBehaviorResult>`
353
+ **/
354
+ networkSetCacheBehavior(params: remote.NetworkSetCacheBehaviorParameters): Promise<local.NetworkSetCacheBehaviorResult>;
355
+ /**
356
+ * WebDriver Bidi command to send command method "network.setExtraHeaders" with parameters.
357
+ * @url https://w3c.github.io/webdriver-bidi/#command-network-setExtraHeaders
358
+ * @param params `remote.NetworkSetExtraHeadersParameters` {@link https://w3c.github.io/webdriver-bidi/#command-network-setExtraHeaders | command parameter}
359
+ * @returns `Promise<local.NetworkSetExtraHeadersResult>`
241
360
  **/
242
- networkSetCacheBehavior(params: remote.NetworkSetCacheBehaviorParameters): Promise<local.EmptyResult>;
361
+ networkSetExtraHeaders(params: remote.NetworkSetExtraHeadersParameters): Promise<local.NetworkSetExtraHeadersResult>;
243
362
  /**
244
363
  * WebDriver Bidi command to send command method "script.addPreloadScript" with parameters.
245
364
  * @url https://w3c.github.io/webdriver-bidi/#command-script-addPreloadScript
@@ -251,16 +370,16 @@ export declare class BidiHandler extends BidiCore {
251
370
  * WebDriver Bidi command to send command method "script.disown" with parameters.
252
371
  * @url https://w3c.github.io/webdriver-bidi/#command-script-disown
253
372
  * @param params `remote.ScriptDisownParameters` {@link https://w3c.github.io/webdriver-bidi/#command-script-disown | command parameter}
254
- * @returns `Promise<local.EmptyResult>`
373
+ * @returns `Promise<local.ScriptDisownResult>`
255
374
  **/
256
- scriptDisown(params: remote.ScriptDisownParameters): Promise<local.EmptyResult>;
375
+ scriptDisown(params: remote.ScriptDisownParameters): Promise<local.ScriptDisownResult>;
257
376
  /**
258
377
  * WebDriver Bidi command to send command method "script.callFunction" with parameters.
259
378
  * @url https://w3c.github.io/webdriver-bidi/#command-script-callFunction
260
379
  * @param params `remote.ScriptCallFunctionParameters` {@link https://w3c.github.io/webdriver-bidi/#command-script-callFunction | command parameter}
261
- * @returns `Promise<local.EmptyResult>`
380
+ * @returns `Promise<local.ScriptCallFunctionResult>`
262
381
  **/
263
- scriptCallFunction(params: remote.ScriptCallFunctionParameters): Promise<local.ScriptEvaluateResult>;
382
+ scriptCallFunction(params: remote.ScriptCallFunctionParameters): Promise<local.ScriptCallFunctionResult>;
264
383
  /**
265
384
  * WebDriver Bidi command to send command method "script.evaluate" with parameters.
266
385
  * @url https://w3c.github.io/webdriver-bidi/#command-script-evaluate
@@ -279,9 +398,9 @@ export declare class BidiHandler extends BidiCore {
279
398
  * WebDriver Bidi command to send command method "script.removePreloadScript" with parameters.
280
399
  * @url https://w3c.github.io/webdriver-bidi/#command-script-removePreloadScript
281
400
  * @param params `remote.ScriptRemovePreloadScriptParameters` {@link https://w3c.github.io/webdriver-bidi/#command-script-removePreloadScript | command parameter}
282
- * @returns `Promise<local.EmptyResult>`
401
+ * @returns `Promise<local.ScriptRemovePreloadScriptResult>`
283
402
  **/
284
- scriptRemovePreloadScript(params: remote.ScriptRemovePreloadScriptParameters): Promise<local.EmptyResult>;
403
+ scriptRemovePreloadScript(params: remote.ScriptRemovePreloadScriptParameters): Promise<local.ScriptRemovePreloadScriptResult>;
285
404
  /**
286
405
  * WebDriver Bidi command to send command method "storage.getCookies" with parameters.
287
406
  * @url https://w3c.github.io/webdriver-bidi/#command-storage-getCookies
@@ -307,23 +426,23 @@ export declare class BidiHandler extends BidiCore {
307
426
  * WebDriver Bidi command to send command method "input.performActions" with parameters.
308
427
  * @url https://w3c.github.io/webdriver-bidi/#command-input-performActions
309
428
  * @param params `remote.InputPerformActionsParameters` {@link https://w3c.github.io/webdriver-bidi/#command-input-performActions | command parameter}
310
- * @returns `Promise<local.EmptyResult>`
429
+ * @returns `Promise<local.InputPerformActionsResult>`
311
430
  **/
312
- inputPerformActions(params: remote.InputPerformActionsParameters): Promise<local.EmptyResult>;
431
+ inputPerformActions(params: remote.InputPerformActionsParameters): Promise<local.InputPerformActionsResult>;
313
432
  /**
314
433
  * WebDriver Bidi command to send command method "input.releaseActions" with parameters.
315
434
  * @url https://w3c.github.io/webdriver-bidi/#command-input-releaseActions
316
435
  * @param params `remote.InputReleaseActionsParameters` {@link https://w3c.github.io/webdriver-bidi/#command-input-releaseActions | command parameter}
317
- * @returns `Promise<local.EmptyResult>`
436
+ * @returns `Promise<local.InputReleaseActionsResult>`
318
437
  **/
319
- inputReleaseActions(params: remote.InputReleaseActionsParameters): Promise<local.EmptyResult>;
438
+ inputReleaseActions(params: remote.InputReleaseActionsParameters): Promise<local.InputReleaseActionsResult>;
320
439
  /**
321
440
  * WebDriver Bidi command to send command method "input.setFiles" with parameters.
322
441
  * @url https://w3c.github.io/webdriver-bidi/#command-input-setFiles
323
442
  * @param params `remote.InputSetFilesParameters` {@link https://w3c.github.io/webdriver-bidi/#command-input-setFiles | command parameter}
324
- * @returns `Promise<local.EmptyResult>`
443
+ * @returns `Promise<local.InputSetFilesResult>`
325
444
  **/
326
- inputSetFiles(params: remote.InputSetFilesParameters): Promise<local.EmptyResult>;
445
+ inputSetFiles(params: remote.InputSetFilesParameters): Promise<local.InputSetFilesResult>;
327
446
  /**
328
447
  * WebDriver Bidi command to send command method "webExtension.install" with parameters.
329
448
  * @url https://w3c.github.io/webdriver-bidi/#command-webExtension-install
@@ -335,8 +454,8 @@ export declare class BidiHandler extends BidiCore {
335
454
  * WebDriver Bidi command to send command method "webExtension.uninstall" with parameters.
336
455
  * @url https://w3c.github.io/webdriver-bidi/#command-webExtension-uninstall
337
456
  * @param params `remote.WebExtensionUninstallParameters` {@link https://w3c.github.io/webdriver-bidi/#command-webExtension-uninstall | command parameter}
338
- * @returns `Promise<local.EmptyResult>`
457
+ * @returns `Promise<local.WebExtensionUninstallResult>`
339
458
  **/
340
- webExtensionUninstall(params: remote.WebExtensionUninstallParameters): Promise<local.EmptyResult>;
459
+ webExtensionUninstall(params: remote.WebExtensionUninstallParameters): Promise<local.WebExtensionUninstallResult>;
341
460
  }
342
461
  //# sourceMappingURL=handler.d.ts.map
@@ -1 +1 @@
1
- {"version":3,"file":"handler.d.ts","sourceRoot":"","sources":["../../src/bidi/handler.ts"],"names":[],"mappings":"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"}
1
+ {"version":3,"file":"handler.d.ts","sourceRoot":"","sources":["../../src/bidi/handler.ts"],"names":[],"mappings":"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"}