@wdio/protocols 6.12.0 → 7.1.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.
@@ -0,0 +1,596 @@
1
+ import { SessionReturn, StatusReturn, Timeouts, WindowHandle, RectReturn, ElementReference, Cookie, ProtocolCommandResponse } from '../types';
2
+ export default interface WebdriverCommands {
3
+ /**
4
+ * Webdriver Protocol Command
5
+ *
6
+ * The New Session command creates a new WebDriver session with the endpoint node. If the creation fails, a session not created error is returned.
7
+ * @ref https://w3c.github.io/webdriver/#dfn-new-sessions
8
+ *
9
+ */
10
+ newSession(capabilities: object): SessionReturn;
11
+ /**
12
+ * Webdriver Protocol Command
13
+ *
14
+ * The Delete Session command closes any top-level browsing contexts associated with the current session, terminates the connection, and finally closes the current session.
15
+ * @ref https://w3c.github.io/webdriver/#dfn-delete-session
16
+ *
17
+ */
18
+ deleteSession(): void;
19
+ /**
20
+ * Webdriver Protocol Command
21
+ *
22
+ * The Status command returns information about whether a remote end is in a state in which it can create new sessions and can additionally include arbitrary meta information that is specific to the implementation.
23
+ * @ref https://w3c.github.io/webdriver/#dfn-status
24
+ *
25
+ */
26
+ status(): StatusReturn;
27
+ /**
28
+ * Webdriver Protocol Command
29
+ *
30
+ * The Get Timeouts command gets timeout durations associated with the current session.
31
+ * @ref https://w3c.github.io/webdriver/#dfn-get-timeouts
32
+ *
33
+ */
34
+ getTimeouts(): Timeouts;
35
+ /**
36
+ * Webdriver Protocol Command
37
+ *
38
+ * The Set Timeouts command sets timeout durations associated with the current session. The timeouts that can be controlled are listed in the table of session timeouts below.
39
+ * @ref https://w3c.github.io/webdriver/#dfn-set-timeouts
40
+ *
41
+ */
42
+ setTimeouts(implicit?: number, pageLoad?: number, script?: number): void;
43
+ /**
44
+ * Webdriver Protocol Command
45
+ *
46
+ * The Get Current URL command returns the URL of the current top-level browsing context.
47
+ * @ref https://w3c.github.io/webdriver/#dfn-get-current-url
48
+ *
49
+ */
50
+ getUrl(): string;
51
+ /**
52
+ * Webdriver Protocol Command
53
+ *
54
+ * The navigateTo (go) command is used to cause the user agent to navigate the current top-level browsing context a new location.
55
+ * @ref https://w3c.github.io/webdriver/#dfn-navigate-to
56
+ *
57
+ */
58
+ navigateTo(url: string): string;
59
+ /**
60
+ * Webdriver Protocol Command
61
+ *
62
+ * The Back command causes the browser to traverse one step backward in the joint session history of the current top-level browsing context. This is equivalent to pressing the back button in the browser chrome or calling `window.history.back`.
63
+ * @ref https://w3c.github.io/webdriver/#dfn-back
64
+ *
65
+ */
66
+ back(): void;
67
+ /**
68
+ * Webdriver Protocol Command
69
+ *
70
+ * The Forward command causes the browser to traverse one step forwards in the joint session history of the current top-level browsing context.
71
+ * @ref https://w3c.github.io/webdriver/#dfn-forward
72
+ *
73
+ */
74
+ forward(): void;
75
+ /**
76
+ * Webdriver Protocol Command
77
+ *
78
+ * The Refresh command causes the browser to reload the page in current top-level browsing context.
79
+ * @ref https://w3c.github.io/webdriver/#dfn-refresh
80
+ *
81
+ */
82
+ refresh(): void;
83
+ /**
84
+ * Webdriver Protocol Command
85
+ *
86
+ * The Get Title command returns the document title of the current top-level browsing context, equivalent to calling `document.title`.
87
+ * @ref https://w3c.github.io/webdriver/#dfn-get-title
88
+ *
89
+ */
90
+ getTitle(): string;
91
+ /**
92
+ * Webdriver Protocol Command
93
+ *
94
+ * The Get Window Handle command returns the window handle for the current top-level browsing context. It can be used as an argument to Switch To Window.
95
+ * @ref https://w3c.github.io/webdriver/#dfn-get-window-handle
96
+ *
97
+ */
98
+ getWindowHandle(): string;
99
+ /**
100
+ * Webdriver Protocol Command
101
+ *
102
+ * The Close Window command closes the current top-level browsing context. Once done, if there are no more top-level browsing contexts open, the WebDriver session itself is closed.
103
+ * @ref https://w3c.github.io/webdriver/#dfn-close-window
104
+ *
105
+ */
106
+ closeWindow(): void;
107
+ /**
108
+ * Webdriver Protocol Command
109
+ *
110
+ * The Switch To Window command is used to select the current top-level browsing context for the current session, i.e. the one that will be used for processing commands.
111
+ * @ref https://w3c.github.io/webdriver/#dfn-switch-to-window
112
+ *
113
+ */
114
+ switchToWindow(handle: string): void;
115
+ /**
116
+ * Webdriver Protocol Command
117
+ *
118
+ * Create a new top-level browsing context.
119
+ * @ref https://w3c.github.io/webdriver/#new-window
120
+ *
121
+ */
122
+ createWindow(type: 'tab' | 'window'): WindowHandle;
123
+ /**
124
+ * Webdriver Protocol Command
125
+ *
126
+ * The Get Window Handles command returns a list of window handles for every open top-level browsing context. The order in which the window handles are returned is arbitrary.
127
+ * @ref https://w3c.github.io/webdriver/#dfn-get-window-handles
128
+ *
129
+ */
130
+ getWindowHandles(): string[];
131
+ /**
132
+ * Webdriver Protocol Command
133
+ *
134
+ * The Print Page command renders the document to a paginated PDF document.
135
+ * @ref https://w3c.github.io/webdriver/#print-page
136
+ *
137
+ */
138
+ printPage(orientation?: string, scale?: number, background?: boolean, width?: number, height?: number, top?: number, bottom?: number, left?: number, right?: number, shrinkToFit?: boolean, pageRanges?: object[]): string;
139
+ /**
140
+ * Webdriver Protocol Command
141
+ *
142
+ * The Switch To Frame command is used to select the current top-level browsing context or a child browsing context of the current browsing context to use as the current browsing context for subsequent commands.
143
+ * @ref https://w3c.github.io/webdriver/#dfn-switch-to-frame
144
+ *
145
+ */
146
+ switchToFrame(id: (number | object | null)): void;
147
+ /**
148
+ * Webdriver Protocol Command
149
+ *
150
+ * The Switch to Parent Frame command sets the current browsing context for future commands to the parent of the current browsing context.
151
+ * @ref https://w3c.github.io/webdriver/#dfn-switch-to-parent-frame
152
+ *
153
+ */
154
+ switchToParentFrame(): void;
155
+ /**
156
+ * Webdriver Protocol Command
157
+ *
158
+ * The Get Window Rect command returns the size and position on the screen of the operating system window corresponding to the current top-level browsing context.
159
+ * @ref https://w3c.github.io/webdriver/#dfn-get-window-rect
160
+ *
161
+ */
162
+ getWindowRect(): RectReturn;
163
+ /**
164
+ * Webdriver Protocol Command
165
+ *
166
+ * The Set Window Rect command alters the size and the position of the operating system window corresponding to the current top-level browsing context.
167
+ * @ref https://w3c.github.io/webdriver/#dfn-set-window-rect
168
+ *
169
+ */
170
+ setWindowRect(x: (number | null), y: (number | null), width: (number | null), height: (number | null)): RectReturn;
171
+ /**
172
+ * Webdriver Protocol Command
173
+ *
174
+ * The Maximize Window command invokes the window manager-specific "maximize" operation, if any, on the window containing the current top-level browsing context. This typically increases the window to the maximum available size without going full-screen.
175
+ * @ref https://w3c.github.io/webdriver/#dfn-maximize-window
176
+ *
177
+ */
178
+ maximizeWindow(): RectReturn;
179
+ /**
180
+ * Webdriver Protocol Command
181
+ *
182
+ * The Minimize Window command invokes the window manager-specific "minimize" operation, if any, on the window containing the current top-level browsing context. This typically hides the window in the system tray.
183
+ * @ref https://w3c.github.io/webdriver/#dfn-minimize-window
184
+ *
185
+ */
186
+ minimizeWindow(): RectReturn;
187
+ /**
188
+ * Webdriver Protocol Command
189
+ *
190
+ * The Fullscreen Window command invokes the window manager-specific “full screen” operation, if any, on the window containing the current top-level browsing context. This typically increases the window to the size of the physical display and can hide browser chrome elements such as toolbars.
191
+ * @ref https://w3c.github.io/webdriver/#dfn-fullscreen-window
192
+ *
193
+ */
194
+ fullscreenWindow(): RectReturn;
195
+ /**
196
+ * Webdriver Protocol Command
197
+ *
198
+ * The Find Element command is used to find an element in the current browsing context that can be used for future commands.
199
+ * @ref https://w3c.github.io/webdriver/#dfn-find-element
200
+ *
201
+ */
202
+ findElement(using: string, value: string): ElementReference;
203
+ /**
204
+ * Webdriver Protocol Command
205
+ *
206
+ * The Find Elements command is used to find elements in the current browsing context that can be used for future commands.
207
+ * @ref https://w3c.github.io/webdriver/#dfn-find-elements
208
+ *
209
+ */
210
+ findElements(using: string, value: string): ElementReference[];
211
+ /**
212
+ * Webdriver Protocol Command
213
+ *
214
+ * The Find Element From Element command is used to find an element from a web element in the current browsing context that can be used for future commands.
215
+ * @ref https://w3c.github.io/webdriver/#dfn-find-element-from-element
216
+ *
217
+ */
218
+ findElementFromElement(elementId: string, using: string, value: string): ElementReference;
219
+ /**
220
+ * Webdriver Protocol Command
221
+ *
222
+ * The Find Elements From Element command is used to find elements from a web element in the current browsing context that can be used for future commands.
223
+ * @ref https://w3c.github.io/webdriver/#dfn-find-elements-from-element
224
+ *
225
+ */
226
+ findElementsFromElement(elementId: string, using: string, value: string): ElementReference[];
227
+ /**
228
+ * Webdriver Protocol Command
229
+ *
230
+ * Get Active Element returns the active element of the current browsing context’s document element.
231
+ * @ref https://w3c.github.io/webdriver/#dfn-get-active-element
232
+ *
233
+ */
234
+ getActiveElement(): string;
235
+ /**
236
+ * Webdriver Protocol Command
237
+ *
238
+ * Is Element Selected determines if the referenced element is selected or not. This operation only makes sense on input elements of the Checkbox- and Radio Button states, or option elements.
239
+ * @ref https://w3c.github.io/webdriver/#dfn-is-element-selected
240
+ *
241
+ */
242
+ isElementSelected(elementId: string): boolean;
243
+ /**
244
+ * Webdriver Protocol Command
245
+ *
246
+ * Is Element Displayed determines the visibility of an element which is guided by what is perceptually visible to the human eye. In this context, an element's displayedness does not relate to the `visibility` or `display` style properties.
247
+ * @ref https://w3c.github.io/webdriver/#element-displayedness
248
+ *
249
+ */
250
+ isElementDisplayed(elementId: string): boolean;
251
+ /**
252
+ * Webdriver Protocol Command
253
+ *
254
+ * The Get Element Attribute command will return the attribute of a web element.
255
+ * @ref https://w3c.github.io/webdriver/#dfn-get-element-attribute
256
+ *
257
+ */
258
+ getElementAttribute(elementId: string, name: string): string;
259
+ /**
260
+ * Webdriver Protocol Command
261
+ *
262
+ * The Get Element Property command will return the result of getting a property of an element.
263
+ * @ref https://w3c.github.io/webdriver/#dfn-get-element-property
264
+ *
265
+ */
266
+ getElementProperty(elementId: string, name: string): string;
267
+ /**
268
+ * Webdriver Protocol Command
269
+ *
270
+ * The Get Element CSS Value command retrieves the computed value of the given CSS property of the given web element.
271
+ * @ref https://w3c.github.io/webdriver/#dfn-get-element-css-value
272
+ *
273
+ */
274
+ getElementCSSValue(elementId: string, propertyName: string): string;
275
+ /**
276
+ * Webdriver Protocol Command
277
+ *
278
+ * The Get Element Text command intends to return an element’s text "as rendered". An element's rendered text is also used for locating a elements by their link text and partial link text.
279
+ * @ref https://w3c.github.io/webdriver/#dfn-get-element-text
280
+ *
281
+ */
282
+ getElementText(elementId: string): string;
283
+ /**
284
+ * Webdriver Protocol Command
285
+ *
286
+ * The Get Element Tag Name command returns the qualified element name of the given web element.
287
+ * @ref https://w3c.github.io/webdriver/#dfn-get-element-tag-name
288
+ *
289
+ */
290
+ getElementTagName(elementId: string): string;
291
+ /**
292
+ * Webdriver Protocol Command
293
+ *
294
+ * The Get Element Rect command returns the dimensions and coordinates of the given web element.
295
+ * @ref https://w3c.github.io/webdriver/#dfn-get-element-rect
296
+ *
297
+ */
298
+ getElementRect(elementId: string): RectReturn;
299
+ /**
300
+ * Webdriver Protocol Command
301
+ *
302
+ * Is Element Enabled determines if the referenced element is enabled or not. This operation only makes sense on form controls.
303
+ * @ref https://w3c.github.io/webdriver/#dfn-is-element-enabled
304
+ *
305
+ */
306
+ isElementEnabled(elementId: string): boolean;
307
+ /**
308
+ * Webdriver Protocol Command
309
+ *
310
+ * The Element Click command scrolls into view the element if it is not already pointer-interactable, and clicks its in-view center point. If the element's center point is obscured by another element, an element click intercepted error is returned. If the element is outside the viewport, an element not interactable error is returned.
311
+ * @ref https://w3c.github.io/webdriver/#dfn-element-click
312
+ *
313
+ */
314
+ elementClick(elementId: string): void;
315
+ /**
316
+ * Webdriver Protocol Command
317
+ *
318
+ * The Element Clear command scrolls into view an editable or resettable element and then attempts to clear its selected files or text content.
319
+ * @ref https://w3c.github.io/webdriver/#dfn-element-clear
320
+ *
321
+ */
322
+ elementClear(elementId: string): void;
323
+ /**
324
+ * Webdriver Protocol Command
325
+ *
326
+ * The Element Send Keys command scrolls into view the form control element and then sends the provided keys to the element. In case the element is not keyboard-interactable, an element not interactable error is returned.<br /><br />The key input state used for input may be cleared mid-way through "typing" by sending the null key, which is U+E000 (NULL).
327
+ * @ref https://w3c.github.io/webdriver/#dfn-element-send-keys
328
+ *
329
+ */
330
+ elementSendKeys(elementId: string, text: string): void;
331
+ /**
332
+ * Webdriver Protocol Command
333
+ *
334
+ * The Get Page Source command returns a string serialization of the DOM of the current browsing context active document.
335
+ * @ref https://w3c.github.io/webdriver/#dfn-get-page-source
336
+ *
337
+ */
338
+ getPageSource(): string;
339
+ /**
340
+ * Webdriver Protocol Command
341
+ *
342
+ * The Execute Script command executes a JavaScript function in the context of the current browsing context and returns the return value of the function.
343
+ * @ref https://w3c.github.io/webdriver/#dfn-execute-script
344
+ *
345
+ */
346
+ executeScript(script: string, args?: (string | object | number | boolean | undefined)[]): any;
347
+ /**
348
+ * Webdriver Protocol Command
349
+ *
350
+ * The Execute Async Script command causes JavaScript to execute as an anonymous function. Unlike the Execute Script command, the result of the function is ignored. Instead an additional argument is provided as the final argument to the function. This is a function that, when called, returns its first argument as the response.
351
+ * @ref https://w3c.github.io/webdriver/#dfn-execute-async-script
352
+ *
353
+ */
354
+ executeAsyncScript(script: string, args: (string | object | number | boolean | undefined)[]): any;
355
+ /**
356
+ * Webdriver Protocol Command
357
+ *
358
+ * The Get All Cookies command returns all cookies associated with the address of the current browsing context’s active document.
359
+ * @ref https://w3c.github.io/webdriver/#dfn-get-all-cookies
360
+ *
361
+ */
362
+ getAllCookies(): Cookie[];
363
+ /**
364
+ * Webdriver Protocol Command
365
+ *
366
+ * The Add Cookie command adds a single cookie to the cookie store associated with the active document's address.
367
+ * @ref https://w3c.github.io/webdriver/#dfn-adding-a-cookie
368
+ *
369
+ */
370
+ addCookie(cookie: object): void;
371
+ /**
372
+ * Webdriver Protocol Command
373
+ *
374
+ * The Delete All Cookies command allows deletion of all cookies associated with the active document's address.
375
+ * @ref https://w3c.github.io/webdriver/#dfn-delete-all-cookies
376
+ *
377
+ */
378
+ deleteAllCookies(): void;
379
+ /**
380
+ * Webdriver Protocol Command
381
+ *
382
+ * The Get Named Cookie command returns the cookie with the requested name from the associated cookies in the cookie store of the current browsing context's active document. If no cookie is found, a no such cookie error is returned.
383
+ * @ref https://w3c.github.io/webdriver/#dfn-get-named-cookie
384
+ *
385
+ */
386
+ getNamedCookie(name: string): Cookie;
387
+ /**
388
+ * Webdriver Protocol Command
389
+ *
390
+ * The Delete Cookie command allows you to delete either a single cookie by parameter name, or all the cookies associated with the active document's address if name is undefined.
391
+ * @ref https://w3c.github.io/webdriver/#dfn-delete-cookie
392
+ *
393
+ */
394
+ deleteCookie(name: string): void;
395
+ /**
396
+ * Webdriver Protocol Command
397
+ *
398
+ * The Perform Actions command is used to execute complex user actions. See [spec](https://github.com/jlipps/simple-wd-spec#perform-actions) for more details.
399
+ * @ref https://w3c.github.io/webdriver/#dfn-perform-actions
400
+ *
401
+ */
402
+ performActions(actions: object[]): void;
403
+ /**
404
+ * Webdriver Protocol Command
405
+ *
406
+ * The Release Actions command is used to release all the keys and pointer buttons that are currently depressed. This causes events to be fired as if the state was released by an explicit series of actions. It also clears all the internal state of the virtual devices.
407
+ * @ref https://w3c.github.io/webdriver/#dfn-release-actions
408
+ *
409
+ */
410
+ releaseActions(): void;
411
+ /**
412
+ * Webdriver Protocol Command
413
+ *
414
+ * The Dismiss Alert command dismisses a simple dialog if present, otherwise error. A request to dismiss an alert user prompt, which may not necessarily have a dismiss button, has the same effect as accepting it.
415
+ * @ref https://w3c.github.io/webdriver/#dfn-dismiss-alert
416
+ *
417
+ */
418
+ dismissAlert(): void;
419
+ /**
420
+ * Webdriver Protocol Command
421
+ *
422
+ * The Accept Alert command accepts a simple dialog if present, otherwise error.
423
+ * @ref https://w3c.github.io/webdriver/#dfn-accept-alert
424
+ *
425
+ */
426
+ acceptAlert(): void;
427
+ /**
428
+ * Webdriver Protocol Command
429
+ *
430
+ * The Get Alert Text command returns the message of the current user prompt. If there is no current user prompt, it returns an error.
431
+ * @ref https://w3c.github.io/webdriver/#dfn-get-alert-text
432
+ *
433
+ */
434
+ getAlertText(): string;
435
+ /**
436
+ * Webdriver Protocol Command
437
+ *
438
+ * The Send Alert Text command sets the text field of a window.prompt user prompt to the given value.
439
+ * @ref https://w3c.github.io/webdriver/#dfn-send-alert-text
440
+ *
441
+ */
442
+ sendAlertText(text: string): void;
443
+ /**
444
+ * Webdriver Protocol Command
445
+ *
446
+ * The Take Screenshot command takes a screenshot of the top-level browsing context's viewport.
447
+ * @ref https://w3c.github.io/webdriver/#dfn-take-screenshot
448
+ *
449
+ */
450
+ takeScreenshot(): string;
451
+ /**
452
+ * Webdriver Protocol Command
453
+ *
454
+ * The Take Element Screenshot command takes a screenshot of the visible region encompassed by the bounding rectangle of an element.
455
+ * @ref https://w3c.github.io/webdriver/#dfn-take-element-screenshot
456
+ *
457
+ */
458
+ takeElementScreenshot(elementId: string, scroll?: boolean): string;
459
+ /**
460
+ * Webdriver Protocol Command
461
+ *
462
+ * Get the computed WAI-ARIA role of an element.
463
+ * @ref https://w3c.github.io/webdriver/#get-computed-role
464
+ *
465
+ */
466
+ getElementComputedRole(elementId: string): string;
467
+ /**
468
+ * Webdriver Protocol Command
469
+ *
470
+ * Get the accessible name of the element.
471
+ * @ref https://w3c.github.io/webdriver/#get-computed-label
472
+ *
473
+ */
474
+ getElementComputedLabel(elementId: string): string;
475
+ /**
476
+ * Webdriver Protocol Command
477
+ *
478
+ * Simulates user modification of a PermissionDescriptor's permission state. __Note:__ this feature has not landed in all browsers yet.
479
+ * @ref https://w3c.github.io/permissions/#set-permission-command
480
+ *
481
+ * @example
482
+ * ```js
483
+ * // set midi permissions
484
+ * browser.setPermissions({
485
+ * name: 'midi',
486
+ * sysex; true
487
+ * , 'granted'); // can be also 'denied' or 'prompt'
488
+ * ```
489
+ */
490
+ setPermissions(descriptor: object, state: string, oneRealm?: boolean): void;
491
+ /**
492
+ * Webdriver Protocol Command
493
+ *
494
+ * Generates a report for testing. Extension for [Reporting API](https://developers.google.com/web/updates/2018/09/reportingapi). __Note:__ this feature has not landed in all browsers yet.
495
+ * @ref https://w3c.github.io/reporting/#automation
496
+ *
497
+ */
498
+ generateTestReport(message: string, group: string): void;
499
+ /**
500
+ * Webdriver Protocol Command
501
+ *
502
+ * Creates a mock sensor to emulate sensors like Ambient Light Sensor. __Note:__ this feature has not landed in all browsers yet.
503
+ * @ref https://w3c.github.io/sensors/#create-mock-sensor-command
504
+ *
505
+ */
506
+ createMockSensor(mockSensorType: string, maxSamplingFrequency: number, minSamplingFrequency: number): void;
507
+ /**
508
+ * Webdriver Protocol Command
509
+ *
510
+ * Retrieves information about a given type of mock sensor. __Note:__ this feature has not landed in all browsers yet.
511
+ * @ref https://w3c.github.io/sensors/#get-mock-sensor-command
512
+ *
513
+ */
514
+ getMockSensor(type: string): ProtocolCommandResponse;
515
+ /**
516
+ * Webdriver Protocol Command
517
+ *
518
+ * Updates the mock sensor type. __Note:__ this feature has not landed in all browsers yet.
519
+ * @ref https://w3c.github.io/sensors/#update-mock-sensor-reading-command
520
+ *
521
+ */
522
+ updateMockSensor(type: string, mockSensorType: string, maxSamplingFrequency: number, minSamplingFrequency: number): void;
523
+ /**
524
+ * Webdriver Protocol Command
525
+ *
526
+ * The Delete Session command closes any top-level browsing contexts associated with the current session, terminates the connection, and finally closes the current session. __Note:__ this feature has not landed in all browsers yet.
527
+ * @ref https://w3c.github.io/sensors/#delete-mock-sensor-command
528
+ *
529
+ */
530
+ deleteMockSensor(type: string): void;
531
+ /**
532
+ * Webdriver Protocol Command
533
+ *
534
+ * Simulates the changing of a time zone for the purposes of testing. __Note:__ this feature has not landed in all browsers yet.
535
+ * @ref https://w3c.github.io/sensors/#create-mock-sensor-command
536
+ *
537
+ */
538
+ setTimeZone(timeZone: string): void;
539
+ /**
540
+ * Webdriver Protocol Command
541
+ *
542
+ * Creates a software [Virtual Authenticator](https://www.w3.org/TR/webauthn-2/#virtual-authenticators).
543
+ * @ref https://www.w3.org/TR/webauthn-2/#sctn-automation-add-virtual-authenticator
544
+ *
545
+ */
546
+ addVirtualAuthenticator(protocol?: string, transport?: string, hasResidentKey?: boolean, hasUserVerification?: boolean, isUserConsenting?: boolean, isUserVerified?: boolean, extensions?: object[], uvm?: object[]): void;
547
+ /**
548
+ * Webdriver Protocol Command
549
+ *
550
+ * Removes a previously created Virtual Authenticator.
551
+ * @ref https://www.w3.org/TR/webauthn-2/#sctn-automation-remove-virtual-authenticator
552
+ *
553
+ */
554
+ removeVirtualAuthenticator(authenticatorId: string): void;
555
+ /**
556
+ * Webdriver Protocol Command
557
+ *
558
+ * Injects a Public Key Credential Source into an existing Virtual Authenticator.
559
+ * @ref https://www.w3.org/TR/webauthn-2/#sctn-automation-add-credential
560
+ *
561
+ */
562
+ addCredential(credentialId: string, isResidentCredential: boolean, rpId: string, privateKey: string, userHandle: string, signCount: number, largeBlob: string): void;
563
+ /**
564
+ * Webdriver Protocol Command
565
+ *
566
+ * Returns one Credential Parameters object for every Public Key Credential Source stored in a Virtual Authenticator, regardless of whether they were stored using Add Credential or `navigator.credentials.create()`.
567
+ * @ref https://www.w3.org/TR/webauthn-2/#sctn-automation-get-credentials
568
+ *
569
+ */
570
+ getCredentials(authenticatorId: string): void;
571
+ /**
572
+ * Webdriver Protocol Command
573
+ *
574
+ * Removes all Public Key Credential Sources stored on a Virtual Authenticator.
575
+ * @ref https://www.w3.org/TR/webauthn-2/#sctn-automation-remove-all-credentials
576
+ *
577
+ */
578
+ removeAllCredentials(authenticatorId: string): void;
579
+ /**
580
+ * Webdriver Protocol Command
581
+ *
582
+ * Removes a Public Key Credential Source stored on a Virtual Authenticator.
583
+ * @ref https://www.w3.org/TR/webauthn-2/#sctn-automation-remove-credential
584
+ *
585
+ */
586
+ removeCredential(authenticatorId: string, credentialId: string): void;
587
+ /**
588
+ * Webdriver Protocol Command
589
+ *
590
+ * The Set User Verified extension command sets the isUserVerified property on the Virtual Authenticator.
591
+ * @ref https://www.w3.org/TR/webauthn-2/#sctn-automation-set-user-verified
592
+ *
593
+ */
594
+ setUserVerified(authenticatorId: string, credentialId: string): void;
595
+ }
596
+ //# sourceMappingURL=webdriver.d.ts.map
@@ -0,0 +1 @@
1
+ {"version":3,"file":"webdriver.d.ts","sourceRoot":"","sources":["../../src/commands/webdriver.ts"],"names":[],"mappings":"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"}
@@ -0,0 +1,2 @@
1
+ "use strict";
2
+ Object.defineProperty(exports, "__esModule", { value: true });
@@ -0,0 +1,43 @@
1
+ import { Protocol } from './types';
2
+ import AppiumCommands from './commands/appium';
3
+ import ChromiumCommands from './commands/chromium';
4
+ import JSONWPCommands from './commands/jsonwp';
5
+ import MJSONWPCommands from './commands/mjsonwp';
6
+ import SauceLabsCommands from './commands/saucelabs';
7
+ import SeleniumCommands from './commands/selenium';
8
+ import WebDriverCommands from './commands/webdriver';
9
+ declare const WebDriverProtocol: Protocol;
10
+ declare const MJsonWProtocol: Protocol;
11
+ declare const JsonWProtocol: Protocol;
12
+ declare const AppiumProtocol: Protocol;
13
+ declare const ChromiumProtocol: Protocol;
14
+ declare const SauceLabsProtocol: Protocol;
15
+ declare const SeleniumProtocol: Protocol;
16
+ declare type WebDriverCommandsAsync = {
17
+ [K in keyof WebDriverCommands]: (...args: Parameters<WebDriverCommands[K]>) => Promise<ReturnType<WebDriverCommands[K]>>;
18
+ };
19
+ declare type AppiumCommandsAsync = {
20
+ [K in keyof AppiumCommands]: (...args: Parameters<AppiumCommands[K]>) => Promise<ReturnType<AppiumCommands[K]>>;
21
+ };
22
+ declare type ChromiumCommandsAsync = {
23
+ [K in keyof ChromiumCommands]: (...args: Parameters<ChromiumCommands[K]>) => Promise<ReturnType<ChromiumCommands[K]>>;
24
+ };
25
+ declare type JSONWPCommandsAsync = {
26
+ [K in keyof JSONWPCommands]: (...args: Parameters<JSONWPCommands[K]>) => Promise<ReturnType<JSONWPCommands[K]>>;
27
+ };
28
+ declare type MJSONWPCommandsAsync = {
29
+ [K in keyof MJSONWPCommands]: (...args: Parameters<MJSONWPCommands[K]>) => Promise<ReturnType<MJSONWPCommands[K]>>;
30
+ };
31
+ declare type SauceLabsCommandsAsync = {
32
+ [K in keyof SauceLabsCommands]: (...args: Parameters<SauceLabsCommands[K]>) => Promise<ReturnType<SauceLabsCommands[K]>>;
33
+ };
34
+ declare type SeleniumCommandsAsync = {
35
+ [K in keyof SeleniumCommands]: (...args: Parameters<SeleniumCommands[K]>) => Promise<ReturnType<SeleniumCommands[K]>>;
36
+ };
37
+ export interface ProtocolCommands extends WebDriverCommands, Omit<JSONWPCommands, keyof WebDriverCommands>, AppiumCommands, ChromiumCommands, Omit<MJSONWPCommands, keyof AppiumCommands | keyof ChromiumCommands>, SauceLabsCommands, SeleniumCommands {
38
+ }
39
+ export interface ProtocolCommandsAsync extends WebDriverCommandsAsync, Omit<JSONWPCommandsAsync, keyof WebDriverCommandsAsync>, AppiumCommandsAsync, ChromiumCommandsAsync, Omit<MJSONWPCommandsAsync, keyof AppiumCommandsAsync | keyof ChromiumCommandsAsync>, SauceLabsCommandsAsync, SeleniumCommandsAsync {
40
+ }
41
+ export * from './types';
42
+ export { WebDriverProtocol, MJsonWProtocol, JsonWProtocol, AppiumProtocol, ChromiumProtocol, SauceLabsProtocol, SeleniumProtocol, AppiumCommands, ChromiumCommands, JSONWPCommands, MJSONWPCommands, SauceLabsCommands, SeleniumCommands, WebDriverCommands, WebDriverCommandsAsync, AppiumCommandsAsync, ChromiumCommandsAsync, JSONWPCommandsAsync, MJSONWPCommandsAsync, SauceLabsCommandsAsync, SeleniumCommandsAsync };
43
+ //# sourceMappingURL=index.d.ts.map
@@ -0,0 +1 @@
1
+ {"version":3,"file":"index.d.ts","sourceRoot":"","sources":["../src/index.ts"],"names":[],"mappings":"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"}