I am trying to setup proxy within protractor
and utilizing authentication with the proxy. However, it doesn't appear to be taking when I add the username and password to the proxy url and port.
For example here is my config.js
file (relevant section)
capabilities: {
browserName: 'chrome',
'proxy':{
'proxyType': 'manual',
'httpProxy': 'http://username:password@url:port',
'sslProxy': 'https://username:password@url:port',
},
version: '47.0'
If I don't put in authentication it works just fine, but when I put the authentication stuff in there, it acts like there isn't a proxy at all and just bypasses it altogether.