webdriver-manager
Version:
A selenium server and browser driver manager for your end to end tests.
15 lines (14 loc) • 405 B
TypeScript
import { Binary, BinaryUrl } from '../binaries';
/**
* The downloaded binary is the binary with the list of versions downloaded.
*/
export declare class DownloadedBinary extends Binary {
versions: string[];
binary: Binary;
constructor(binary: Binary);
id(): string;
prefix(): string;
suffix(): string;
getUrl(): Promise<BinaryUrl>;
getVersionList(): Promise<string[]>;
}