appium-chromium-driver
Version:
Appium driver for Chromium-based browsers that work with Chromedriver
17 lines • 633 B
TypeScript
export interface DriverPlatformConfig {
archiveName: string;
releaseChannel: 'WINDOWS' | 'MACOS' | 'LINUX';
}
/**
* Get the platform-specific configuration for MSEdgeDriver.
* @param platform The platform name.
* @param arch The architecture name.
* @returns The platform configuration.
*/
export declare function getPlatformConfig(platform?: NodeJS.Platform, arch?: NodeJS.Architecture): DriverPlatformConfig;
/**
* Get driver executable name.
* @returns The name of the driver executable.
*/
export declare function getDriverExecutableName(platform?: NodeJS.Platform): string;
//# sourceMappingURL=platform.d.ts.map