TouchActions Class |
Namespace: Selenium
Dim instance As TouchActions
The TouchActions type exposes the following members.
Name | Description | |
---|---|---|
![]() | Flick |
Creates a flick gesture for the current view.
|
![]() | FlickFrom |
Creates a flick gesture for the current view starting at a specific location.
|
![]() | Move |
Allows the execution of the gesture 'move' on the screen.
|
![]() | Perform |
Performs all stored Actions.
|
![]() | PressHold |
Allows the execution of the gesture 'down' on the screen. It is typically the first of a
sequence of touch gestures.
|
![]() | PressRelease |
Allows the execution of the gesture 'up' on the screen. It is typically the last of a
sequence of touch gestures.
|
![]() | Scroll |
Creates a scroll gesture that starts on a particular screen location.
|
![]() | ScrollFrom |
Creates a scroll gesture that starts on a particular screen location.
|
![]() | Tap |
Allows the execution of single tap on the screen, analogous to click using a Mouse.
|
![]() | TapDouble |
Allows the execution of double tap on the screen, analogous to click using a Mouse.
|
![]() | TapLong |
Allows the execution of a long press gesture on the screen.
|
![]() | Wait |
Waits the given time in millisecond.
|
Set ele = driver.FindElementById("id") driver.Actions.PressHold(ele).Move(10, 10).PressRelease().Perform