Double Tap

Double tap on the touch screen using finger motion events

Example Usage

TouchActions action = new TouchActions(driver);
action.doubleTap(element);
action.perform();

actions = TouchActions(driver)
actions.double_tap(element)
actions.perform()

// Not supported


// wd example
// Using tapElement method
await driver.tapElement(elementOne);

// Using touch actions
let action = new wd.TouchAction();
action.tap({el: element});
action.perform();
await driver.performTouchAction(action);

@driver.touch_action.double_tap(element).perform

// TODO C# sample

// TODO PHP sample

Support

Appium Server

Platform Driver Platform Versions Appium Version Driver Version
iOS XCUITest None None None
UIAutomation None None None

Appium Clients

Language Support Documentation
Java All seleniumhq.github.io
Python All seleniumhq.github.io
Javascript (WebdriverIO) All
Javascript (WD) All github.com
Ruby All www.rubydoc.info
PHP All github.com
C# All github.com

HTTP API Specifications

Endpoint

POST /session/:session_id/touch/doubleclick

URL Parameters

name description
session_id ID of the session to route the command to

JSON Parameters

name type description
element number ID of the element to double tap on

Response

null

See Also