iedriver_xml.d.ts 353 B

123456789
  1. import { BinaryUrl } from './binary';
  2. import { XmlConfigSource } from './config_source';
  3. export declare class IEDriverXml extends XmlConfigSource {
  4. constructor();
  5. getUrl(version: string): Promise<BinaryUrl>;
  6. getVersionList(): Promise<string[]>;
  7. private getLatestIEDriverVersion();
  8. private getSpecificIEDriverVersion(inputVersion);
  9. }