/* * Copyright 2012-2014 eBay Software Foundation and selendroid committers. * * 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 io.selendroid.client; import org.openqa.selenium.Keys; /** * Keystrokes to simulate Android native key events. * * <pre>{@code * ((HasInputDevices) driver).getKeyboard().sendKeys(SelendroidKeys.MENU); * }</pre> * * @author ddary */ public interface SelendroidKeys { // Keys that are shared with normal WebDriver (sorted alphabetically) public static final CharSequence ALT_LEFT = Keys.ALT; public static final CharSequence DEL = Keys.DELETE; public static final CharSequence DPAD_DOWN = Keys.ARROW_DOWN; public static final CharSequence DPAD_LEFT = Keys.ARROW_LEFT; public static final CharSequence DPAD_RIGHT = Keys.ARROW_RIGHT; public static final CharSequence DPAD_UP = Keys.ARROW_UP; public static final CharSequence ENTER = Keys.ENTER; public static final CharSequence SHIFT_LEFT = Keys.SHIFT; public static final CharSequence BACK = String.valueOf('\uE100'); public static final CharSequence MENU = String.valueOf('\uE102'); public static final CharSequence SEARCH = String.valueOf('\uE103'); public static final CharSequence SYM = String.valueOf('\uE104'); public static final CharSequence ALT_RIGHT = String.valueOf('\uE105'); public static final CharSequence SHIFT_RIGHT = String.valueOf('\uE106'); // Simulating a HOME key on Android using instrumentation is not supported. }