C#Selenium Webdriver-如何使用代理验证?

发布于 2025-01-21 12:29:06 字数 1352 浏览 0 评论 0原文

当我使用身份验证运行时,该程序会出现错误。

        var options = new FirefoxOptions();

        string proxyInfo = "user:password@host:port";
        var proxy = new Proxy
        {
            HttpProxy = proxyInfo,
            SslProxy = proxyInfo,
            FtpProxy = proxyInfo,
        };
        options.Proxy = proxy;

        var service = FirefoxDriverService.CreateDefaultService();
        service.FirefoxBinaryPath = "C:\\Program Files\\Mozilla Firefox\\firefox.exe";

        WebDriver = new FirefoxDriver(service, options);

截屏 在此处输入图像描述

当我在没有身份验证的情况下运行它时,该程序可以工作。它仅在打开网站时要求进行身份验证。

        var options = new FirefoxOptions();

        string proxyInfo = "host:port";
        var proxy = new Proxy
        {
            HttpProxy = proxyInfo,
            SslProxy = proxyInfo,
            FtpProxy = proxyInfo,
        };
        options.Proxy = proxy;

        var service = FirefoxDriverService.CreateDefaultService();
        service.FirefoxBinaryPath = "C:\\Program Files\\Mozilla Firefox\\firefox.exe";

        WebDriver = new FirefoxDriver(service, options);

截屏 在这里输入图像描述

我应该如何解决此问题?

The program gives an error when I run it with authentication.

        var options = new FirefoxOptions();

        string proxyInfo = "user:password@host:port";
        var proxy = new Proxy
        {
            HttpProxy = proxyInfo,
            SslProxy = proxyInfo,
            FtpProxy = proxyInfo,
        };
        options.Proxy = proxy;

        var service = FirefoxDriverService.CreateDefaultService();
        service.FirefoxBinaryPath = "C:\\Program Files\\Mozilla Firefox\\firefox.exe";

        WebDriver = new FirefoxDriver(service, options);

Screenshot
enter image description here

The program works when I run it without authentication. It only asks for authentication when the website is opened.

        var options = new FirefoxOptions();

        string proxyInfo = "host:port";
        var proxy = new Proxy
        {
            HttpProxy = proxyInfo,
            SslProxy = proxyInfo,
            FtpProxy = proxyInfo,
        };
        options.Proxy = proxy;

        var service = FirefoxDriverService.CreateDefaultService();
        service.FirefoxBinaryPath = "C:\\Program Files\\Mozilla Firefox\\firefox.exe";

        WebDriver = new FirefoxDriver(service, options);

Screenshot
enter image description here

How should I go about solving this problem?

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。
列表为空,暂无数据
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文