Skip to main content

SetKeyToKeyDelay

Description

Use this command to set the time between two key presses.

Parameters

NameTypeDescription
Key delayIntegerTime in Milliseconds

Usage

info

Replace <server> with the appropriate URL.

Example

SetKeyToKeyDelay

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

...
...


seetest.setKeyToKeyDelay(1000);