source: trip-planner-front/node_modules/@angular/cdk/testing/selenium-webdriver/selenium-webdriver-keys.d.ts

Last change on this file was 6a3a178, checked in by Ema <ema_spirova@…>, 3 years ago

initial commit

  • Property mode set to 100644
File size: 1.1 KB
Line 
1/**
2 * @license
3 * Copyright Google LLC All Rights Reserved.
4 *
5 * Use of this source code is governed by an MIT-style license that can be
6 * found in the LICENSE file at https://angular.io/license
7 */
8import { ModifierKeys } from '@angular/cdk/testing';
9/**
10 * Maps the `TestKey` constants to WebDriver's `webdriver.Key` constants.
11 * See https://github.com/SeleniumHQ/selenium/blob/trunk/javascript/webdriver/key.js#L29
12 */
13export declare const seleniumWebDriverKeyMap: {
14 0: string;
15 1: string;
16 2: string;
17 3: string;
18 4: string;
19 5: string;
20 6: string;
21 7: string;
22 8: string;
23 9: string;
24 10: string;
25 11: string;
26 12: string;
27 13: string;
28 14: string;
29 15: string;
30 16: string;
31 17: string;
32 18: string;
33 19: string;
34 20: string;
35 21: string;
36 22: string;
37 23: string;
38 24: string;
39 25: string;
40 26: string;
41 27: string;
42 28: string;
43 29: string;
44};
45/** Gets a list of WebDriver `Key`s for the given `ModifierKeys`. */
46export declare function getSeleniumWebDriverModifierKeys(modifiers: ModifierKeys): string[];
Note: See TracBrowser for help on using the repository browser.