当前位置:   article > 正文

C#使用Selenium驱动Chrome浏览器_c# chromedriver

c# chromedriver

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

  1. string chromiumFolderLocation = Path.GetDirectoryName(Assembly.GetExecutingAssembly().Location) + "\\chromium";
  2. chromeOptions = new ChromeOptions
  3. {
  4. UnhandledPromptBehavior = UnhandledPromptBehavior.Accept,
  5. };
  6. // check if in incog mode, if it is, then we launch incog mode
  7. if (this.incogMode)
  8. {
  9. chromeOptions.AddArgument("--incognito");
  10. }
  11. // enable headless mode
  12. if (this.headless)
  13. {
  14. Logger.Info("Started a headless session");
  15. chromeOptions.AddArgument("--headless=new");
  16. }
  17. chromeOptions.AddArgument("--start-maximized");
  18. chromeOptions.AddArgument("no-sandbox");
  19. chromeOptions.AddArgument("--log-level=3");
  20. chromeOptions.AddArgument("--silent");
  21. chromeOptions.AddUserProfilePreference("download.prompt_for_download", false);
  22. chromeOptions.AddUserProfilePreference("download.default_directory", pathToNewFolder);
  23. chromeOptions.AddUserProfilePreference("disable-popup-blocking", true);
  24. chromeOptions.AddUserProfilePreference("plugins.always_open_pdf_externally", true);
  25. chromeOptions.BinaryLocation = $"{chromiumFolderLocation}\\chrome.exe";
  26. // we want to find all the files under the location of chromium\Extensions and add them in.
  27. if (Directory.Exists(chromiumFolderLocation + "\\Extensions"))
  28. {
  29. foreach (string extension in Directory.GetFiles(chromiumFolderLocation + "\\Extensions"))
  30. {
  31. chromeOptions.AddExtension(extension);
  32. }
  33. }
  34. var pp = Environment.OSVersion.Platform;
  35. service = ChromeDriverService.CreateDefaultService(this.seleniumDriverLocation);
  36. service.SuppressInitialDiagnosticInformation = true;
  37. this.WebDriver = new ChromeDriver(service,chromeOptions);

备注

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

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

声明:本文内容由网友自发贡献,不代表【wpsshop博客】立场,版权归原作者所有,本站不承担相应法律责任。如您发现有侵权的内容,请联系我们。转载请注明出处:https://www.wpsshop.cn/w/煮酒与君饮/article/detail/978272
推荐阅读
相关标签
  

闽ICP备14008679号