List of usage examples for org.openqa.selenium.interactions TouchScreen move
void move(int x, int y);
From source file:org.specrunner.webdriver.actions.touch.PluginMove.java
License:Open Source License
@Override protected void doEnd(IContext context, IResultSet result, WebDriver client, TouchScreen touch) throws PluginException { touch.move(getX(), getY()); result.addResult(Success.INSTANCE, context.peek()); }