Skip to main content

SetInKeyDelay

Description

Use this command to set the time between key down and key up.

Parameters

NameTypeDescription
DelayIntegerTime in millisecond's

Usage

info

Replace <server> with the appropriate URL.

Example

SetInKeyDelay

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

...
...


seetest.setInKeyDelay(10000)