Hi!
I try both of this:
"ChromeOptions options = new ChromeOptions();
var proxy = new Proxy();
proxy.Kind = ProxyKind.Manual;
proxy.IsAutoDetect = false;
proxy.HttpProxy =
proxy.SslProxy =
options.Proxy = proxy;
options.AddArgument("ignore-certificate-errors");
options.AddUserProfilePreference("profile.default_content_setting_values.images", 2);
//options.AddArgument("--host-resolver-rules=\"MAP * ~NOTFOUND, EXCLUDE 45.111.24.72\"");
driver = new ChromeDriver(rootPath + @"\chromedriver_win32", options);"
But it didn't work. The exception is the next: "OpenQA.Selenium.WebDriverException: "invalid argument: entry 0 of 'firstMatch' is invalid
from invalid argument: cannot parse capability: proxy
from invalid argument: Specifying 'socksProxy' requires an integer for 'socksVersion'""
I can not found where I can set socks version. Can anybody help me?