appium-xcuitest-driver
Version:
Appium driver for iOS using XCUITest for backend
26 lines • 855 B
TypeScript
import type { AppiumLogger } from '@appium/types';
import type { RemoteXPCFacade } from '../remote-xpc';
import { LineConsumingLog } from './line-consuming-log';
export interface IOSDeviceLogOpts {
udid: string;
showLogs?: boolean;
log: AppiumLogger;
remoteXPCFacade?: RemoteXPCFacade | null;
}
export declare class IOSDeviceLog extends LineConsumingLog {
private readonly udid;
private readonly showLogs;
private readonly remoteXPCFacade;
private legacyService;
private syslogService;
constructor(opts: IOSDeviceLogOpts);
get isCapturing(): boolean;
startCapture(): Promise<void>;
stopCapture(): Promise<void>;
private startLegacyCapture;
private stopLegacyCapture;
private stopRemoteXPCCapture;
private onLog;
}
export default IOSDeviceLog;
//# sourceMappingURL=ios-device-log.d.ts.map