All Downloads are FREE. Search and download functionalities are using the official Maven repository.

org.finra.jtaf.ewd.widget.Keys Maven / Gradle / Ivy

Go to download

ExtWebDriver is an enhancement to the WebDriver API, with features such as widget library, session management and extended functions

There is a newer version: 1.5.6
Show newest version
/*
 * (C) Copyright 2013 Java Test Automation Framework Contributors.
 *
 * Licensed under the Apache License, Version 2.0 (the "License");
 * you may not use this file except in compliance with the License.
 * You may obtain a copy of the License at
 *
 *     http://www.apache.org/licenses/LICENSE-2.0
 *
 * Unless required by applicable law or agreed to in writing, software
 * distributed under the License is distributed on an "AS IS" BASIS,
 * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
 * See the License for the specific language governing permissions and
 * limitations under the License.
 * 
 */
package org.finra.jtaf.ewd.widget;

/**
 * Keys constants to use when performing keyUp/keyDown
 * 
 */
public enum Keys {

      NULL,
      CANCEL, // ^break
      HELP,
      BACK_SPACE,
      TAB,
      CLEAR,
      RETURN,
      ENTER,
      SHIFT,
      LEFT_SHIFT, // alias
      CONTROL,
      LEFT_CONTROL, // alias
      ALT,
      LEFT_ALT, // alias
      PAUSE,
      ESCAPE,
      SPACE,
      PAGE_UP,
      PAGE_DOWN,
      END,
      HOME,
      LEFT,
      ARROW_LEFT, // alias
      UP,
      ARROW_UP, // alias
      RIGHT,
      ARROW_RIGHT, // alias
      DOWN,
      ARROW_DOWN, // alias
      INSERT,
      DELETE,
      SEMICOLON,
      EQUALS,

      NUMPAD0,  // number pad keys
      NUMPAD1,
      NUMPAD2,
      NUMPAD3,
      NUMPAD4,
      NUMPAD5,
      NUMPAD6,
      NUMPAD7,
      NUMPAD8,
      NUMPAD9,
      MULTIPLY,
      ADD,
      SEPARATOR,
      SUBTRACT,
      DECIMAL,
      DIVIDE,

      F1,  // function keys
      F2,
      F3,
      F4,
      F5,
      F6,
      F7,
      F8,
      F9,
      F10,
      F11,
      F12,

      META,
 COMMAND, // Alias

    ZENKAKU_HANKAKU;
}




© 2015 - 2025 Weber Informatics LLC | Privacy Policy