This repository was archived by the owner on Jul 29, 2024. It is now read-only.
File tree 2 files changed +3
-11
lines changed
2 files changed +3
-11
lines changed Original file line number Diff line number Diff line change @@ -120,18 +120,10 @@ export interface Config {
120
120
*
121
121
* To match sauce agent implementation, use
122
122
* [HttpProxyAgent](https://github.com/TooTallNate/node-http-proxy-agent)
123
- * to generate the agent or use sauceProxy as an alternative. If a
124
- * sauceProxy is provided, the sauceAgent will be overridden.
123
+ * to generate the agent or use webDriverProxy as an alternative. If a
124
+ * webDriverProxy is provided, the sauceAgent will be overridden.
125
125
*/
126
126
sauceAgent ?: any ;
127
- /**
128
- * Use sauceProxy if you are behind a corporate proxy to connect to
129
- * saucelabs.com.
130
- *
131
- * The sauceProxy is used to generate an HTTP agent. If a sauceProxy is
132
- * provided, the sauceAgent will be overridden.
133
- */
134
- sauceProxy ?: string ;
135
127
/**
136
128
* Use sauceBuild if you want to group test capabilites by a build ID
137
129
*/
Original file line number Diff line number Diff line change @@ -58,7 +58,7 @@ export class Sauce extends DriverProvider {
58
58
username : this . config_ . sauceUser ,
59
59
password : this . config_ . sauceKey ,
60
60
agent : this . config_ . sauceAgent ,
61
- proxy : this . config_ . sauceProxy
61
+ proxy : this . config_ . webDriverProxy
62
62
} ) ;
63
63
this . config_ . capabilities [ 'username' ] = this . config_ . sauceUser ;
64
64
this . config_ . capabilities [ 'accessKey' ] = this . config_ . sauceKey ;
You can’t perform that action at this time.
0 commit comments