TouchActions Class
TouchActions object
Inheritance Hierarchy
SystemObject
  SeleniumTouchActions

Namespace: Selenium
Assembly: Selenium (in Selenium.dll) Version: 2.0.9.0 (2.0.9.0)
Syntax
VB Usage
Dim instance As TouchActions

The TouchActions type exposes the following members.

Methods
  NameDescription
Public methodFlick
Creates a flick gesture for the current view.
Public methodFlickFrom
Creates a flick gesture for the current view starting at a specific location.
Public methodMove
Allows the execution of the gesture 'move' on the screen.
Public methodPerform
Performs all stored Actions.
Public methodPressHold
Allows the execution of the gesture 'down' on the screen. It is typically the first of a sequence of touch gestures.
Public methodPressRelease
Allows the execution of the gesture 'up' on the screen. It is typically the last of a sequence of touch gestures.
Public methodScroll
Creates a scroll gesture that starts on a particular screen location.
Public methodScrollFrom
Creates a scroll gesture that starts on a particular screen location.
Public methodTap
Allows the execution of single tap on the screen, analogous to click using a Mouse.
Public methodTapDouble
Allows the execution of double tap on the screen, analogous to click using a Mouse.
Public methodTapLong
Allows the execution of a long press gesture on the screen.
Public methodWait
Waits the given time in millisecond.
Top
Examples
Set ele = driver.FindElementById("id")
driver.Actions.PressHold(ele).Move(10, 10).PressRelease().Perform
See Also