如何使用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)