作者热门文章
- c - 在位数组中找到第一个零
- linux - Unix 显示有关匹配两种模式之一的文件的信息
- 正则表达式替换多个文件
- linux - 隐藏来自 xtrace 的命令
我需要使用 C# 在 Selenium 中使用现有的 Firefox 配置文件。该配置文件具有我需要的已配置附加组件。
我在谷歌上找到了一些代码,但那些是针对 Java 的,我尝试了以下代码,但它仍然不起作用。
FirefoxProfile profile = new FirefoxProfile("C:\\Users\\username\\Desktop\\software\\Files");
driver = new FirefoxDriver();
最佳答案
在selenium的官方文档上找到了答案
var profileManager = new FirefoxProfileManager();
FirefoxProfile profile = profileManager.GetProfile("Selenium");
IWebDriver driver = new FirefoxDriver(profile);
关于c# - 如何在 Selenium C# 中使用现有的 Firefox 配置文件?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/39809529/
我是一名优秀的程序员,十分优秀!