如何使用Selenium 3.13.1和C#以默认配置文件启动Firefox

时间:2018-07-24 20:53:48

标签: c# selenium-webdriver

我是Selenium的新手,经过详尽的研究,我找不到一个使用默认配置文件启动Firefox的可靠示例,因此我保留了扩展名,书签等。句法。这是我的设置:

  • Visual Studio 2017社区
  • C#-Selenium WebDriver 3.13.1
  • Selenium WebDriver支持
  • geckodriver-Firefox v。61.0.1

解决方案上已设置参考。这是我的代码:

FirefoxProfileManager myProfile = new FirefoxProfileManager();
FirefoxProfile profile = myProfile.GetProfile("C:\\Users\\Robert\\AppData\\Roaming\\Mozilla\\Firefox\\Profiles\\4halwx5j.default");
FirefoxOptions options = new FirefoxOptions();
options.Profile = profile;          

IWebDriver driver = new FirefoxDriver(options);

driver.Url = "https://lastpass.com/?ac=1&lpnorefresh=1";
driver.Manage().Window.Maximize();

有人愿意提供一个使用WebDriver 3.13.1 FF v。61.0.1和C#语法的示例吗?

0 个答案:

没有答案