Skip to content

Instantly share code, notes, and snippets.

@darkslategrey
Created November 15, 2011 16:02
Show Gist options
  • Save darkslategrey/1367432 to your computer and use it in GitHub Desktop.
Save darkslategrey/1367432 to your computer and use it in GitHub Desktop.
proxy def
PROXY="http://PROXY_URL:PROXY_PORT"
webdriver.DesiredCapabilities.HTMLUNIT['proxy'] = {
"httpProxy":PROXY,
"ftpProxy":PROXY,
"sslProxy":PROXY,
"noProxy":None,
"proxyType":"MANUAL",
"class":"org.openqa.selenium.Proxy",
"autodetect":False
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment