C#使用Selenium驱动Chrome浏览器

1.Selenium库依赖安装

Selenium WebDriver是Selenium项目的一部分,用于模拟用户在Web应用程序中的交互操作。它支持多种浏览器,如Chrome、Firefox、IE等,且与各种编程语言(如Java、Python、C#等)兼容,具有广泛的适应性。

Selenium WebDriver的核心原理通过向浏览器发送命令和脚本,模拟真实用户的操作行为,从而实现对Web应用程序的自动化测试

2.准备材料

        最新版本chromedriver 下载地址:
https://googlechromelabs.github.io/chrome-for-testing/#stable

        这里有自动测试用到的chrome版本以及驱动。

Chrome for Testing availability 

         最新的Chrome版本和驱动:

下载后Chorme的目录如下图:

 ChromeDriver如下:

3.示例代码

         ChromeDriver

                        string chromiumFolderLocation = Path.GetDirectoryName(Assembly.GetExecutingAssembly().Location) + "\\chromium";

                        chromeOptions = new ChromeOptions
                        {
                            UnhandledPromptBehavior = UnhandledPromptBehavior.Accept,
                        };

                        // check if in incog mode, if it is, then we launch incog mode
                        if (this.incogMode)
                        {
                            chromeOptions.AddArgument("--incognito");
                        }

                        // enable headless mode
                        if (this.headless)
                        {
                            Logger.Info("Started a headless session");
                            chromeOptions.AddArgument("--headless=new");
                        }

                        chromeOptions.AddArgument("--start-maximized");

                        chromeOptions.AddArgument("no-sandbox");
                        chromeOptions.AddArgument("--log-level=3");
                        chromeOptions.AddArgument("--silent");
                        chromeOptions.AddUserProfilePreference("download.prompt_for_download", false);
                        chromeOptions.AddUserProfilePreference("download.default_directory", pathToNewFolder);
                        chromeOptions.AddUserProfilePreference("disable-popup-blocking", true);
                        chromeOptions.AddUserProfilePreference("plugins.always_open_pdf_externally", true);
                        chromeOptions.BinaryLocation = $"{chromiumFolderLocation}\\chrome.exe";

                        // we want to find all the files under the location of chromium\Extensions and add them in.
                        if (Directory.Exists(chromiumFolderLocation + "\\Extensions"))
                        {
                            foreach (string extension in Directory.GetFiles(chromiumFolderLocation + "\\Extensions"))
                            {
                                chromeOptions.AddExtension(extension);
                            }
                        }
                        var pp =  Environment.OSVersion.Platform; 
                        service = ChromeDriverService.CreateDefaultService(this.seleniumDriverLocation);
                        service.SuppressInitialDiagnosticInformation = true;

                        this.WebDriver = new ChromeDriver(service,chromeOptions);

备注

        1.调试过程中遇到的一个常数Environment.OSVersion.Platform值是“Win32NT”,开发环境操作系统是win10_64位的。

        2.Headerless Browser(无头的浏览器)是浏览器的无界面状态,可以在不打开浏览器GUI的情况下,使用浏览器支持的性能。

最近更新

  1. TCP协议是安全的吗?

    2024-04-04 07:54:01       16 阅读
  2. 阿里云服务器执行yum,一直下载docker-ce-stable失败

    2024-04-04 07:54:01       16 阅读
  3. 【Python教程】压缩PDF文件大小

    2024-04-04 07:54:01       15 阅读
  4. 通过文章id递归查询所有评论(xml)

    2024-04-04 07:54:01       18 阅读

热门阅读

  1. 走近Shiro--一起学习吧之架构

    2024-04-04 07:54:01       13 阅读
  2. 速盾:服务器有cdn 带宽上限建议多少

    2024-04-04 07:54:01       16 阅读
  3. Go实现MapReduce

    2024-04-04 07:54:01       13 阅读
  4. Spark面试整理-讨论DataFrame和DataSet的区别

    2024-04-04 07:54:01       14 阅读
  5. 文心一言 vs GPT-4 —— 全面横向比较

    2024-04-04 07:54:01       15 阅读
  6. MySQL数据库归档工具之【pt-archiver】

    2024-04-04 07:54:01       14 阅读
  7. 在Ubuntu 18.04上如何添加交换空间

    2024-04-04 07:54:01       14 阅读
  8. 人生感悟

    2024-04-04 07:54:01       10 阅读
  9. 【python】Google 风格和 Numpy 风格 docstring

    2024-04-04 07:54:01       16 阅读
  10. List Set Map 的值能否为NUll?

    2024-04-04 07:54:01       11 阅读
  11. 2024水会|全国水科技大会第一版日程正式公布

    2024-04-04 07:54:01       14 阅读
  12. 在Gitee上创建新仓库

    2024-04-04 07:54:01       12 阅读