C# Selenium Proxy Authentication with Chrome Driver

寵の児 提交于 2019-12-31 04:00:11

问题


I am using the following code for the proxy. however, when chrome starts, pop-up window will pop up and the program will be locked.

public async void StartDriver(string proxy)
    {
        var proxys = new Proxy();
        ChromeDriverService chromeDriverService = ChromeDriverService.CreateDefaultService();
        chromeDriverService.HideCommandPromptWindow = true;
        ChromeOptions chromeOptions = new ChromeOptions();
        bool flag = !string.IsNullOrEmpty(proxy);
        if (flag)
        {
            proxys.Kind = ProxyKind.Manual;
            proxys.IsAutoDetect = false;
            proxys.SslProxy = proxy;
            chromeOptions.Proxy = proxys;
        }
        driver = new ChromeDriver(chromeDriverService, chromeOptions, TimeSpan.FromMinutes(10));
        await Task.Delay(2000);
    }

I tried http or ssl the same...

StartDriver("88.55.66.77:8080");

Or

StartDriver("http://username:pass@88.55.66.77:8080");

I could not start a browser with a kind of proxy.

I want a code that automatically enters the username and password. I don't want autoitx3.dll.

is there a way to start a secure proxy?

Thank you.


回答1:


is there a way to start a secure proxy?

There's one. You need to create a chrome extension with proxy settings.

manifest.json

    {
        "version": "0.1.0",
        "manifest_version": 2,
        "name": "%NAME IT AS YOU WANT%",
        "permissions": [
            "proxy",
            "tabs",
            "unlimitedStorage",
            "storage",
            "<all_urls>",
            "webRequest",
            "webRequestBlocking"
        ],
        "background": {
            "scripts": ["background.js"]
        },
        "minimum_chrome_version":"22.0.0"
    }

background.js

//note that it's a JS code. You can use any additional code to do anything :) 
var config = {
    mode: "fixed_servers",
    rules: {
      singleProxy: {
        scheme: "http",
        host: "%HOST%",
        port: parseInt(%PORT%)
      },
      bypassList: ["foobar.com"]
    }
  };

chrome.proxy.settings.set({value: config, scope: "regular"}, function() {});

function callbackFn(details) {
    return {
        authCredentials: {
            username: "%USERNAME%",
            password: "%PASSWORD%"
        }
    };
}

chrome.webRequest.onAuthRequired.addListener(
        callbackFn,
        {urls: ["<all_urls>"]},
        ['blocking']
);

Pack it as an archive. For instance yourExt.dat

var proxy = "yourExt.dat";
var options = new ChromeOptions();
options.AddExtension(proxy);
var driver = new ChromeDriver(options);


来源:https://stackoverflow.com/questions/53437078/c-sharp-selenium-proxy-authentication-with-chrome-driver

易学教程内所有资源均来自网络或用户发布的内容,如有违反法律规定的内容欢迎反馈
该文章没有解决你所遇到的问题?点击提问,说说你的问题,让更多的人一起探讨吧!