Skip to main content

SetSpeed

Description

Use this command to set the speed of the test.

Parameters

NameTypePossible ValuesDescription
SpeedString* Slow

* Normal

* Fast
Test speed

Usage

info

Replace <server> with the appropriate URL.

Example

Speed

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

...
...

// Runs the test with Slow speed
seetest.setSpeed("Slow")