class Key
Same name in this branch
- 11.1.x vendor/symfony/lock/Key.php \Symfony\Component\Lock\Key
WebDriver\Key class
@package WebDriver
Hierarchy
- class \WebDriver\Key
Expanded class hierarchy of Key
1 file declares its use of Key
- Selenium2Driver.php in vendor/
lullabot/ mink-selenium2-driver/ src/ Selenium2Driver.php
32 string references to 'Key'
- AccountSettingsForm::buildForm in core/
modules/ user/ src/ AccountSettingsForm.php - Form constructor.
- ArrayItem::getSubNodeNames in vendor/
nikic/ php-parser/ lib/ PhpParser/ Node/ ArrayItem.php - Gets the names of the sub nodes.
- ckeditor5.schema.yml in core/
modules/ ckeditor5/ config/ schema/ ckeditor5.schema.yml - core/modules/ckeditor5/config/schema/ckeditor5.schema.yml
- claro_form_system_modules_alter in core/
themes/ claro/ claro.theme - Implements hook_form_FORM_ID_alter() for the system_modules form.
- ClassFilesSniff::drupalParseInfoFormat in vendor/
drupal/ coder/ coder_sniffer/ Drupal/ Sniffs/ InfoFiles/ ClassFilesSniff.php - Parses a Drupal info file. Copied from Drupal core drupal_parse_info_format().
File
-
vendor/
lullabot/ php-webdriver/ lib/ WebDriver/ Key.php, line 19
Namespace
WebDriverView source
final class Key {
/*
* The Unicode "Private Use Area" code points (0xE000-0xF8FF) are used to represent
* pressable, non-text keys.
*
* @see https://github.com/SeleniumHQ/selenium/blob/trunk/java/src/org/openqa/selenium/Keys.java
*
* key_name = "UTF-8"; // UCS-2
*/
const NULL_KEY = "";
// E000
const CANCEL = "";
// E001
const HELP = "";
// E002
const BACKSPACE = "";
// E003
const TAB = "";
// E004
const CLEAR = "";
// E005
const RETURN_KEY = "";
// E006
const ENTER = "";
// E007
const SHIFT = "";
// E008
const CONTROL = "";
// E009
const ALT = "";
// E00A
const PAUSE = "";
// E00B
const ESCAPE = "";
// E00C
const SPACE = "";
// E00D
const PAGE_UP = "";
// E00E
const PAGE_DOWN = "";
// E00F
const END = "";
// E010
const HOME = "";
// E011
const LEFT_ARROW = "";
// E012
const UP_ARROW = "";
// E013
const RIGHT_ARROW = "";
// E014
const DOWN_ARROW = "";
// E015
const INSERT = "";
// E016
const DELETE = "";
// E017
const SEMICOLON = "";
// E018
const EQUALS = "";
// E019
const NUMPAD_0 = "";
// E01A
const NUMPAD_1 = "";
// E01B
const NUMPAD_2 = "";
// E01C
const NUMPAD_3 = "";
// E01D
const NUMPAD_4 = "";
// E01E
const NUMPAD_5 = "";
// E01F
const NUMPAD_6 = "";
// E020
const NUMPAD_7 = "";
// E021
const NUMPAD_8 = "";
// E022
const NUMPAD_9 = "";
// E023
const MULTIPLY = "";
// E024
const ADD = "";
// E025
const SEPARATOR = "";
// E026
const SUBTRACT = "";
// E027
const DECIMAL = "";
// E028
const DIVIDE = "";
// E029
const F1 = "";
// E031
const F2 = "";
// E032
const F3 = "";
// E033
const F4 = "";
// E034
const F5 = "";
// E035
const F6 = "";
// E036
const F7 = "";
// E037
const F8 = "";
// E038
const F9 = "";
// E039
const F10 = "";
// E03A
const F11 = "";
// E03B
const F12 = "";
// E03C
const COMMAND = "";
// E03D
const META = "";
// E03D
const ZENKAKU_HANKAKU = "";
// E040
}