Example usage for org.openqa.selenium.interactions TouchScreen up

List of usage examples for org.openqa.selenium.interactions TouchScreen up

Introduction

In this page you can find the example usage for org.openqa.selenium.interactions TouchScreen up.

Prototype

void up(int x, int y);

Source Link

Document

Allows the execution of the gesture 'up' on the screen.

Usage

From source file:org.specrunner.webdriver.actions.touch.PluginUp.java

License:Open Source License

@Override
protected void doEnd(IContext context, IResultSet result, WebDriver client, TouchScreen touch)
        throws PluginException {
    touch.up(getX(), getY());
    result.addResult(Success.INSTANCE, context.peek());
}