From 81c2aa3ea6435934797b4d10c6734945484a641d Mon Sep 17 00:00:00 2001 From: Craig Date: Thu, 23 Jun 2016 13:04:40 -0700 Subject: [PATCH] fix(iedriver): download url fix for iedriver (#54) closes #53 --- lib/binaries/ie_driver.ts | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) 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; }