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

Commit 3edd62e

Browse files
KevinMarkVIheathkit
authored andcommitted
feat(saucelabs): Add Sauce Labs HTTPS Support (#4071)
1 parent 29f975a commit 3edd62e

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

lib/driverProviders/sauce.ts

+2-2
Original file line numberDiff line numberDiff line change
@@ -63,10 +63,10 @@ export class Sauce extends DriverProvider {
6363
this.config_.capabilities['username'] = this.config_.sauceUser;
6464
this.config_.capabilities['accessKey'] = this.config_.sauceKey;
6565
this.config_.capabilities['build'] = this.config_.sauceBuild;
66-
let auth = 'http://' + this.config_.sauceUser + ':' + this.config_.sauceKey + '@';
66+
let auth = 'https://' + this.config_.sauceUser + ':' + this.config_.sauceKey + '@';
6767
this.config_.seleniumAddress =
6868
auth + (this.config_.sauceSeleniumAddress ? this.config_.sauceSeleniumAddress :
69-
'ondemand.saucelabs.com:80/wd/hub');
69+
'ondemand.saucelabs.com:443/wd/hub');
7070

7171
// Append filename to capabilities.name so that it's easier to identify
7272
// tests.

0 commit comments

Comments
 (0)