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

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

Introduction

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

The text is from its open source code.

Constructor

Method

Actionbuild()
Generates a composite action containing all actions so far, ready to be performed (and resets the internal builder state, so subsequent calls to #build() will contain fresh sequences).
TouchActionsdown(int x, int y)
Allows the execution of the gesture 'down' on the screen.
TouchActionsflick(WebElement onElement, int xOffset, int yOffset, int speed)
Allows the execution of flick gestures starting in a location's element.
TouchActionsmove(int x, int y)
Allows the execution of the gesture 'move' on the screen.
voidperform()
A convenience method for performing the actions without calling build() first.
TouchActionssingleTap(WebElement onElement)
Allows the execution of single tap on the screen, analogous to click using a Mouse.
TouchActionsup(int x, int y)
Allows the execution of the gesture 'up' on the screen.