We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 98cefa4 commit 83ec910Copy full SHA for 83ec910
lib/driverProviders/sauce.ts
@@ -63,10 +63,10 @@ export class Sauce extends DriverProvider {
63
this.config_.capabilities['username'] = this.config_.sauceUser;
64
this.config_.capabilities['accessKey'] = this.config_.sauceKey;
65
this.config_.capabilities['build'] = this.config_.sauceBuild;
66
- let auth = 'http://' + this.config_.sauceUser + ':' + this.config_.sauceKey + '@';
+ let auth = 'https://' + this.config_.sauceUser + ':' + this.config_.sauceKey + '@';
67
this.config_.seleniumAddress =
68
auth + (this.config_.sauceSeleniumAddress ? this.config_.sauceSeleniumAddress :
69
- 'ondemand.saucelabs.com:80/wd/hub');
+ 'ondemand.saucelabs.com:443/wd/hub');
70
71
// Append filename to capabilities.name so that it's easier to identify
72
// tests.
0 commit comments