Selenium禁用firefox配置文件中的插件

时间:2013-05-30 14:28:16

标签: java firefox selenium automation selenium-webdriver

有人可以告诉我如何使用Java为我的客户firefox配置文件禁用插件吗?我发现有一些网站显示添加附加组件,但没有关于禁用插件的信息。

我的firefox个人资料:

    FirefoxProfile firefoxProfile = new FirefoxProfile();
    firefoxProfile.setAcceptUntrustedCertificates(true);
    firefoxProfile.setAssumeUntrustedCertificateIssuer(false);
    firefoxProfile.setPreference("browser.download.folderList",2);
    firefoxProfile.setPreference("browser.download.manager.showWhenStarting",false);
    firefoxProfile.setPreference("browser.download.dir",reportFolder);
    firefoxProfile.setPreference("browser.helperApps.neverAsk.saveToDisk","text/csv,application/pdf,application/csv,application/vnd.ms-excel");
    firefoxProfile.setPreference("browser.download.manager.showAlertOnComplete",false);  firefoxProfile.setPreference("browser.download.manager.showAlertOnComplete",false);
    firefoxProfile.setPreference("browser.download.manager.showWhenStartinge",false);
    firefoxProfile.setPreference("browser.download.panel.shown",false);
    firefoxProfile.setPreference("browser.download.useToolkitUI",true);
    firefoxProfile.setPreference("pdfjs.disabled", true);
    firefoxProfile.setPreference("pdfjs.firstRun", false);
driver = new FirefoxDriver(firefoxProfile);

问题是默认情况下启用了一些插件。 Adobe acrobat,google update,java,microsoft office,flash,shockwave for director和silverlight。

我需要禁用其中的一些,因为它们搞乱了我的测试。

1 个答案:

答案 0 :(得分:2)

除非您要创建明确安装firefox扩展/插件的配置文件,否则Selenium Webdriver将创建一个空白配置文件并使用它。

您能告诉我们您用来调用FF驱动程序的代码吗?