-
Notifications
You must be signed in to change notification settings - Fork 211
Open
Labels
Milestone
Description
We would like to be able to specify a secure proxy, i.e. connection between browser and the proxy itself is secured by TLS. The proxy also needs to authenticate the browser with a password.
On Unix, this is possible by setting the following environment variables, depending on the destination's schema.
export http_proxy=https://user:[email protected]:port # for http destinations.
export https_proxy=https://user:[email protected]:port # for https destinations.Some browsers allow PAC to specify the HTTPS proxy type to make use of the secure proxy, but PAC does not allow specifying passwords.
Currently, the W3C WebDriver recommendation only allows specifying httpProxy for http destinations and sslProxy for https destinations. It expects the proxy to speak plain HTTP without a password.