webdriver-manager
Version:
A selenium server and browser driver manager for your end to end tests.
10 lines (9 loc) • 353 B
TypeScript
import { BinaryUrl } from './binary';
import { XmlConfigSource } from './config_source';
export declare class IEDriverXml extends XmlConfigSource {
constructor();
getUrl(version: string): Promise<BinaryUrl>;
getVersionList(): Promise<string[]>;
private getLatestIEDriverVersion();
private getSpecificIEDriverVersion(inputVersion);
}