I get the following error in the command line when trying to run Protractor:
> Fatal error: protractor exited with code: 1
I n
According to the WebDriver capabilities documentation, you should use 'hostname:port' as the format for the httpProxy
. E.g.:
capabilities: {
browserName: 'firefox',
proxy: {
proxyType: 'manual',
httpProxy: 'localhost:8443',
sslProxy: 'localhost:8888'
}
}
Check your proxy software for the correct port.
This works in Firefox and Chrome.