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

Add Sauce Labs HTTPS Support #4071

Merged
merged 1 commit into from
Feb 7, 2017
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
4 changes: 2 additions & 2 deletions lib/driverProviders/sauce.ts
Original file line number Diff line number Diff line change
Expand Up @@ -63,10 +63,10 @@ export class Sauce extends DriverProvider {
this.config_.capabilities['username'] = this.config_.sauceUser;
this.config_.capabilities['accessKey'] = this.config_.sauceKey;
this.config_.capabilities['build'] = this.config_.sauceBuild;
let auth = 'http://' + this.config_.sauceUser + ':' + this.config_.sauceKey + '@';
let auth = 'https://' + this.config_.sauceUser + ':' + this.config_.sauceKey + '@';
this.config_.seleniumAddress =
auth + (this.config_.sauceSeleniumAddress ? this.config_.sauceSeleniumAddress :
'ondemand.saucelabs.com:80/wd/hub');
'ondemand.saucelabs.com:443/wd/hub');

// Append filename to capabilities.name so that it's easier to identify
// tests.
Expand Down