我是Selenium的新手,经过详尽的研究,我找不到一个使用默认配置文件启动Firefox的可靠示例,因此我保留了扩展名,书签等。句法。这是我的设置:
解决方案上已设置参考。这是我的代码:
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#语法的示例吗?