Skip to content

Instantly share code, notes, and snippets.

@angelovstanton
Created February 28, 2016 18:56
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save angelovstanton/66bc03de0124f28d0163 to your computer and use it in GitHub Desktop.
Save angelovstanton/66bc03de0124f28d0163 to your computer and use it in GitHub Desktop.
ChromeOptions options = new ChromeOptions();
var proxy = new Proxy();
proxy.Kind = ProxyKind.Manual;
proxy.IsAutoDetect = false;
proxy.HttpProxy =
proxy.SslProxy = "127.0.0.1:3239";
options.Proxy = proxy;
options.AddArgument("ignore-certificate-errors");
IWebDriver driver = new ChromeDriver(options);
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment