I want to complete disable the notification when i launch a firefox browser
For different browsers/drivers there are different profiles/options that need to be set:
Firefox
FirefoxProfile ffprofile = new FirefoxProfile(); ffprofile.setPreference("dom.webnotifications.enabled", false); WebDriver driver = new FirefoxDriver(ffprofile);
Chrome (Source: https://stackoverflow.com/a/34368704/904375)
Map prefs = new HashMap(); prefs.put("profile.default_content_setting_values.notifications", 2); ChromeOptions options = new ChromeOptions(); options.setExperimentalOption("prefs", prefs); WebDriver driver = new ChromeDriver(options);
If you love us? You can donate to us via Paypal or buy me a coffee so we can maintain and grow! Thank you!
Donate Us With