我想通过Selenium Webdriver启动Firefox浏览器时禁用通知 我找到了this answer,但它已被弃用,但在Firefox上并不适合我(虽然它在Chrome上运行得很好)。
我将此依赖项用于 pom.xml :
<dependency>
<groupId>org.seleniumhq.selenium</groupId>
<artifactId>selenium-java</artifactId>
<version>3.11.0</version>
</dependency>
答案 0 :(得分:2)
如果您的 usecase 要禁用通知,则可以选择以下选项:
要在 Firefox 浏览器客户端中停用Push Notification,请获取 FirefoxProfile 的帮助并传递密钥 dom.webnotifications.enabled 和 dom.push.enabled 以及所需的值为 false :
System.setProperty("webdriver.gecko.driver", "C:\\path\\to\\geckodriver.exe");
ProfilesIni profile = new ProfilesIni();
FirefoxProfile testprofile = profile.getProfile("debanjan");
testprofile.setPreference("dom.webnotifications.enabled", false);
testprofile.setPreference("dom.push.enabled", false);
DesiredCapabilities dc = DesiredCapabilities.firefox();
dc.setCapability(FirefoxDriver.PROFILE, testprofile);
FirefoxOptions opt = new FirefoxOptions();
opt.merge(dc);
WebDriver driver = new FirefoxDriver(opt);
driver.get("https://www.ndtv.com/");
注意:此方法使用存储在我的本地系统中的名称 debanjan 的现有FirefoxProfile
,该文件是根据Creating a new Firefox profile on Windows上的文档创建的
要在 Chrome 浏览器客户端中停用通知,请获取 setExperimentalOption()的帮助以传递 HashMap 包含 profile.default_content_setting_values.notifications ,值为 2 :
System.setProperty("webdriver.chrome.driver", "C:\\path\\to\\chromedriver.exe");
Map<String, Object> prefs = new HashMap<String, Object>();
prefs.put("profile.default_content_setting_values.notifications", 2);
prefs.put("credentials_enable_service", false);
prefs.put("profile.password_manager_enabled", false);
ChromeOptions options = new ChromeOptions();
options.setExperimentalOption("prefs", prefs);
options.addArguments("start-maximized");
options.addArguments("disable-infobars");
options.addArguments("--disable-extensions");
options.addArguments("--disable-notifications");
WebDriver driver = new ChromeDriver(options);
driver.get("https://www.ndtv.com/");