Skip to content
This repository has been archived by the owner on Jul 29, 2024. It is now read-only.

Commit

Permalink
fix(webdriver-manager): removed ssl on chromedriver url for consistency
Browse files Browse the repository at this point in the history
Other URLs use http, make chromedriver use this as well.
  • Loading branch information
cbbs authored and juliemr committed Jul 22, 2014
1 parent 1b16c26 commit 9e36584
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion bin/webdriver-manager
Original file line number Diff line number Diff line change
Expand Up @@ -43,7 +43,7 @@ var binaries = {
prefix: 'chromedriver_',
filename: 'chromedriver_' + versions.chromedriver + '.zip',
url: function() {
var urlPrefix = 'https://chromedriver.storage.googleapis.com/' +
var urlPrefix = 'http://chromedriver.storage.googleapis.com/' +
versions.chromedriver + '/chromedriver_';
if (os.type() == 'Darwin') {
return urlPrefix + 'mac32.zip';
Expand Down

0 comments on commit 9e36584

Please sign in to comment.