Skip to main content

Description

Use this command to stop the device log. This is called after calling StartLoggingDevice.

Usage

info

Replace <server> with the appropriate URL.

Example

StartLoggingDevice

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

...
//Start Logging Command
seetest.startLoggingDevice("c:\\logs");
...

//Stop Logging Command
seetest.stopLoggingDevice();