UNPKG

appium-xcuitest-driver

Version:

Appium driver for iOS using XCUITest for backend

22 lines 891 B
import type { AppiumLogger } from '@appium/types'; import type { SubProcess } from 'teen_process'; export interface BaseDeviceClientOptions { log: AppiumLogger; } export interface InstallProfileArgs { profilePath?: string; payload?: string | Buffer; } export declare abstract class BaseDeviceClient { private readonly _log; constructor(opts: BaseDeviceClientOptions); get log(): AppiumLogger; abstract assertExists(isStrict: boolean): Promise<boolean>; abstract listProfiles(): Promise<object>; abstract installProfile(args: InstallProfileArgs): Promise<void>; abstract removeProfile(name: string): Promise<string>; abstract listCrashes(): Promise<string[]>; abstract exportCrash(name: string, dstFolder: string): Promise<void>; abstract collectPcap(dstFile: string): Promise<SubProcess>; } //# sourceMappingURL=base-device-client.d.ts.map