Skip to main content

SetDragStartDelay

Description

Use this command to set the drag start delay.

Parameters

NameTypeDescription
DelayIntegerTime in Milliseconds

Usage

info

Replace <server> with the appropriate URL.

Example

setDragStartDelay

DesiredCapabilities dc = new DesiredCapabilities();
driver = new AndroidDriver(new URL("<server>"), dc);
seetest = new SeeTestClient(driver);
dc.setCapability(MobileCapabilityType.UDID, "<deviceid>");

...
...

//Command to delay in drag.
seetest.setDragStartDelay(5000);