Skip to main content
Drupal API
User account menu
  • Log in

Breadcrumb

  1. Drupal Core 11.1.x
  2. Key.php

class Key

Same name in this branch
  1. 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().

... See full list

File

vendor/lullabot/php-webdriver/lib/WebDriver/Key.php, line 19

Namespace

WebDriver
View 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

}

Members

Title Sort descending Modifiers Object type Summary
Key::ADD constant
Key::ALT constant
Key::BACKSPACE constant
Key::CANCEL constant
Key::CLEAR constant
Key::COMMAND constant
Key::CONTROL constant
Key::DECIMAL constant
Key::DELETE constant
Key::DIVIDE constant
Key::DOWN_ARROW constant
Key::END constant
Key::ENTER constant
Key::EQUALS constant
Key::ESCAPE constant
Key::F1 constant
Key::F10 constant
Key::F11 constant
Key::F12 constant
Key::F2 constant
Key::F3 constant
Key::F4 constant
Key::F5 constant
Key::F6 constant
Key::F7 constant
Key::F8 constant
Key::F9 constant
Key::HELP constant
Key::HOME constant
Key::INSERT constant
Key::LEFT_ARROW constant
Key::META constant
Key::MULTIPLY constant
Key::NULL_KEY constant
Key::NUMPAD_0 constant
Key::NUMPAD_1 constant
Key::NUMPAD_2 constant
Key::NUMPAD_3 constant
Key::NUMPAD_4 constant
Key::NUMPAD_5 constant
Key::NUMPAD_6 constant
Key::NUMPAD_7 constant
Key::NUMPAD_8 constant
Key::NUMPAD_9 constant
Key::PAGE_DOWN constant
Key::PAGE_UP constant
Key::PAUSE constant
Key::RETURN_KEY constant
Key::RIGHT_ARROW constant
Key::SEMICOLON constant
Key::SEPARATOR constant
Key::SHIFT constant
Key::SPACE constant
Key::SUBTRACT constant
Key::TAB constant
Key::UP_ARROW constant
Key::ZENKAKU_HANKAKU constant
RSS feed
Powered by Drupal