diff --git a/lib/binaries/ie_driver.ts b/lib/binaries/ie_driver.ts index 06bef433..0df19cda 100644 --- a/lib/binaries/ie_driver.ts +++ b/lib/binaries/ie_driver.ts @@ -15,7 +15,7 @@ export class IEDriver extends Binary { constructor() { super(); - this.name = 'IEDriver'; + this.name = 'IEDriverServer'; this.versionCustom = IEDriver.versionDefault; this.prefixDefault = 'IEDriverServer'; this.suffixDefault = '.zip'; @@ -40,7 +40,7 @@ export class IEDriver extends Binary { } url(): string { - let urlBase = this.cdn + this.shortVersion(this.version()) + '/'; + let urlBase = this.cdn + this.shortVersion(this.versionCustom) + '/'; let filename = this.prefix() + this.version() + this.suffix(); return urlBase + filename; }