-
Notifications
You must be signed in to change notification settings - Fork 65
Description
Meta -
Watir Version: N/A
Selenium Version: N/A
Browser Version: N/A
Browser Driver Version: N/A
OS Version: N/A
Expected Behavior -
proxy documentation found at http://watir.com/guides/proxies/
should contain references on how to add noproxy or no_proxy to the proxy object.
no_proxy is important for modern authentication methods like azure_ad where the watir
needs to communicate to an internal application but also reach out on the internet to outside resouces like azure. The proxy may not have access to the internal network causing tests to tail.
proxy = {
http: 'my.proxy.com:8080',
ssl: 'my.proxy.com:8080',
no_proxy: "company.com,company.net"
}
Actual Behavior -
proxy = {
http: 'my.proxy.com:8080',
ssl: 'my.proxy.com:8080'
}
The correct usage of either no_proxy or noProxy, whichever is correct, is not referenced.
Thank you for taking a look.