appium-chromedriver
Version:
Node.js wrapper around chromedriver.
18 lines • 760 B
TypeScript
import type { ChromedriverCommandContext } from './types';
/**
* Builds command-line arguments for the Chromedriver subprocess.
*/
export declare function buildChromedriverArgs(this: ChromedriverCommandContext): string[];
/**
* Retrieves Chromedriver `/status` payload through the active proxy.
*/
export declare function getStatus(this: ChromedriverCommandContext): Promise<any>;
/**
* Polls Chromedriver until it reports ready and captures runtime metadata.
*/
export declare function waitForOnline(this: ChromedriverCommandContext): Promise<void>;
/**
* Cleans up stale Chromedriver processes and leftover adb forwarded ports.
*/
export declare function killAll(this: ChromedriverCommandContext): Promise<void>;
//# sourceMappingURL=process.d.ts.map