Example usage for org.openqa.selenium.remote.server.handler WebDriverHandler subclass-usage

List of usage examples for org.openqa.selenium.remote.server.handler WebDriverHandler subclass-usage

Introduction

In this page you can find the example usage for org.openqa.selenium.remote.server.handler WebDriverHandler subclass-usage.

Usage

From source file com.google.android.testing.nativedriver.server.handler.AndroidNativeFindElement.java

/**
 * Handler for {@link org.openqa.selenium.WebDriver#findElement(By)}. Identical
 * to the default WebDriver handler, but uses a different {@code BySelector}
 * implementation.
 *
 * @author Matt DeVore

From source file com.google.android.testing.nativedriver.server.handler.AndroidNativeFindElements.java

/**
 * Handler for {@link org.openqa.selenium.WebDriver#findElements(By)}. Identical
 * to the default WebDriver handler, but uses a different {@code BySelector}
 * implementation.
 *
 * @author Matt DeVore

From source file com.google.android.testing.nativedriver.server.handler.AndroidNativeSendKeys.java

/**
 * A handler to send key events via Android Instrumentation to the
 * currently-running process.
 *
 * @author Steve Salevan
 */

From source file com.google.android.testing.nativedriver.server.handler.Click.java

/**
 * Handler of {@code /session/:sessionId/click} for interaction of touch screen
 *
 * @author Dezheng Xu
 */
public class Click extends WebDriverHandler implements JsonParametersAware {

From source file com.google.android.testing.nativedriver.server.handler.DoubleTap.java

/**
 * Handler of {@code /session/:sessionId/doubleclick} for interaction of
 * touch screen
 *
 * @author Dezheng Xu
 */

From source file com.google.android.testing.nativedriver.server.handler.TouchDown.java

/**
 * Handler of {@code /session/:sessionId/buttondown} for interaction of
 * touch screen
 *
 * @author Dezheng Xu
 */

From source file com.google.android.testing.nativedriver.server.handler.TouchMove.java

/**
 * Handler of {@code /session/:sessionId/moveto} for interaction of
 * touch screen
 *
 * @author Dezheng Xu
 */

From source file com.google.android.testing.nativedriver.server.handler.TouchUp.java

/**
 * Handler of {@code /session/:sessionId/buttonup} for interaction of
 * touch screen
 *
 * @author Dezheng Xu
 */