如何使用selenium脚本禁用firefox通知

时间:2018-06-19 08:55:52

标签: java firefox selenium-webdriver

如何使用selenium脚本禁用firefox的通知。我使用过FirefoxProfile,但我听说它被弃用了。我也使用过FirefoxOptions,但无济于事。

这不起作用。

FirefoxOptions options = new FirefoxOptions();
                options.addArguments("--disable-notifications");
                driver = new FirefoxDriver(options);
                driver.manage().window().maximize();

这也不是。

FirefoxProfile ffprofile = new FirefoxProfile();
ffprofile.setPreference("dom.webnotifications.enabled", false);
WebDriver driver = new FirefoxDriver(ffprofile);

对于后者,我收到了这个错误。

Cannot resolve constructor FirefoxDriver(org.openqa.selenium.firefox.FirefoxProfile)

0 个答案:

没有答案