Java org.openqa.selenium.interactions TouchScreen fields, constructors, methods, implement or subclass

Example usage for Java org.openqa.selenium.interactions TouchScreen fields, constructors, methods, implement or subclass

Introduction

In this page you can find the methods, fields and constructors for org.openqa.selenium.interactions TouchScreen.

The text is from its open source code.

Implementation

org.openqa.selenium.interactions.TouchScreen has the following implementations.
Click this link to see all its implementation.

Method

voiddoubleTap(Coordinates where)
Allows the execution of double tap on the screen, analogous to double click using a Mouse.
voiddown(int x, int y)
Allows the execution of the gesture 'down' on the screen.
voidflick(int xSpeed, int ySpeed)
Sends a flick gesture to the current view.
voidflick(Coordinates where, int xOffset, int yOffset, int speed)
Allows the execution of flick gestures starting in a location's element.
voidlongPress(Coordinates where)
Allows the execution of long press gestures.
voidmove(int x, int y)
Allows the execution of the gesture 'move' on the screen.
voidscroll(int xOffset, int yOffset)
Allows the view to be scrolled by an x and y offset.
voidscroll(Coordinates where, int xOffset, int yOffset)
Creates a scroll gesture that starts on a particular screen location.
voidsingleTap(Coordinates where)
Allows the execution of single tap on the screen, analogous to click using a Mouse.
voidup(int x, int y)
Allows the execution of the gesture 'up' on the screen.