有何建议为何以下代码未添加扩展程序?
FirefoxProfile profile1 = new FirefoxProfile();
profile1.AddExtension(@"C:\\Downloads\\selenium-ide-2.5.0.xpi");
IWebDriver driver1 = new FirefoxDriver(profile1);
相同的代码与firebug附加组件正常工作。我认为最新的firefox存在兼容性错误。我也尝试安装2.0版本的selenium IDE,但它没有帮助。
答案 0 :(得分:0)
可能会有帮助......
File file = new File("firebug-1.8.1.xpi");
FirefoxProfile firefoxProfile = new FirefoxProfile();
firefoxProfile.addExtension(file);
firefoxProfile.setPreference("extensions.firebug.currentVersion", "1.8.1"); // Avoid startup screen
WebDriver driver = new FirefoxDriver(firefoxProfile);
答案 1 :(得分:0)
找到答案:
结果:它有效!