How to disable push-notifications using Selenium for Firefox and Chrome?
up vote
2
down vote
favorite
I want to disable the notification when I launch Firefox browser through Selenium Webdriver.
I found this answer, but it's deprecated and does not work for me on Firefox (it works perfectly on Chrome though).
I'm use this dependency for my pom.xml:
<dependency>
<groupId>org.seleniumhq.selenium</groupId>
<artifactId>selenium-java</artifactId>
<version>3.11.0</version>
</dependency>
java selenium selenium-webdriver selenium-chromedriver geckodriver
add a comment |
up vote
2
down vote
favorite
I want to disable the notification when I launch Firefox browser through Selenium Webdriver.
I found this answer, but it's deprecated and does not work for me on Firefox (it works perfectly on Chrome though).
I'm use this dependency for my pom.xml:
<dependency>
<groupId>org.seleniumhq.selenium</groupId>
<artifactId>selenium-java</artifactId>
<version>3.11.0</version>
</dependency>
java selenium selenium-webdriver selenium-chromedriver geckodriver
add a comment |
up vote
2
down vote
favorite
up vote
2
down vote
favorite
I want to disable the notification when I launch Firefox browser through Selenium Webdriver.
I found this answer, but it's deprecated and does not work for me on Firefox (it works perfectly on Chrome though).
I'm use this dependency for my pom.xml:
<dependency>
<groupId>org.seleniumhq.selenium</groupId>
<artifactId>selenium-java</artifactId>
<version>3.11.0</version>
</dependency>
java selenium selenium-webdriver selenium-chromedriver geckodriver
I want to disable the notification when I launch Firefox browser through Selenium Webdriver.
I found this answer, but it's deprecated and does not work for me on Firefox (it works perfectly on Chrome though).
I'm use this dependency for my pom.xml:
<dependency>
<groupId>org.seleniumhq.selenium</groupId>
<artifactId>selenium-java</artifactId>
<version>3.11.0</version>
</dependency>
java selenium selenium-webdriver selenium-chromedriver geckodriver
java selenium selenium-webdriver selenium-chromedriver geckodriver
edited 2 days ago
DebanjanB
35.4k73271
35.4k73271
asked Apr 9 at 21:21
vix simplex
329
329
add a comment |
add a comment |
1 Answer
1
active
oldest
votes
up vote
2
down vote
accepted
If your usecase is to disable the notification following are the options :
To disable notification in Firefox browser client take help of a FirefoxProfile and pass the Key dom.webnotifications.enabled with Value as 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/");
Note : This method uses an existing FirefoxProfile
by the name debanjan stored in my local system which was created following the documentation at Creating a new Firefox profile on Windows
To disable notification in Chrome browser client take help of a setExperimentalOption() to pass a HashMap containing profile.default_content_setting_values.notifications with Value as 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/");
Reference: Web Push notifications in Firefox
This works for Firefox, but I changed one line:FirefoxProfile testprofile = profile.getProfile("default");
This is universal solution? It will be works on another hosts/os for my teammates?
– vix simplex
Apr 10 at 10:07
1
@vixsimplex I have added a reference with respect to you question within the comments. However as per best practices avoid using the default FirefoxProfile as it may contain add-ons, bookmarks, etc. As a result you may face Timeout Errors while loading the default profile.
– DebanjanB
Apr 10 at 15:11
add a comment |
1 Answer
1
active
oldest
votes
1 Answer
1
active
oldest
votes
active
oldest
votes
active
oldest
votes
up vote
2
down vote
accepted
If your usecase is to disable the notification following are the options :
To disable notification in Firefox browser client take help of a FirefoxProfile and pass the Key dom.webnotifications.enabled with Value as 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/");
Note : This method uses an existing FirefoxProfile
by the name debanjan stored in my local system which was created following the documentation at Creating a new Firefox profile on Windows
To disable notification in Chrome browser client take help of a setExperimentalOption() to pass a HashMap containing profile.default_content_setting_values.notifications with Value as 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/");
Reference: Web Push notifications in Firefox
This works for Firefox, but I changed one line:FirefoxProfile testprofile = profile.getProfile("default");
This is universal solution? It will be works on another hosts/os for my teammates?
– vix simplex
Apr 10 at 10:07
1
@vixsimplex I have added a reference with respect to you question within the comments. However as per best practices avoid using the default FirefoxProfile as it may contain add-ons, bookmarks, etc. As a result you may face Timeout Errors while loading the default profile.
– DebanjanB
Apr 10 at 15:11
add a comment |
up vote
2
down vote
accepted
If your usecase is to disable the notification following are the options :
To disable notification in Firefox browser client take help of a FirefoxProfile and pass the Key dom.webnotifications.enabled with Value as 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/");
Note : This method uses an existing FirefoxProfile
by the name debanjan stored in my local system which was created following the documentation at Creating a new Firefox profile on Windows
To disable notification in Chrome browser client take help of a setExperimentalOption() to pass a HashMap containing profile.default_content_setting_values.notifications with Value as 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/");
Reference: Web Push notifications in Firefox
This works for Firefox, but I changed one line:FirefoxProfile testprofile = profile.getProfile("default");
This is universal solution? It will be works on another hosts/os for my teammates?
– vix simplex
Apr 10 at 10:07
1
@vixsimplex I have added a reference with respect to you question within the comments. However as per best practices avoid using the default FirefoxProfile as it may contain add-ons, bookmarks, etc. As a result you may face Timeout Errors while loading the default profile.
– DebanjanB
Apr 10 at 15:11
add a comment |
up vote
2
down vote
accepted
up vote
2
down vote
accepted
If your usecase is to disable the notification following are the options :
To disable notification in Firefox browser client take help of a FirefoxProfile and pass the Key dom.webnotifications.enabled with Value as 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/");
Note : This method uses an existing FirefoxProfile
by the name debanjan stored in my local system which was created following the documentation at Creating a new Firefox profile on Windows
To disable notification in Chrome browser client take help of a setExperimentalOption() to pass a HashMap containing profile.default_content_setting_values.notifications with Value as 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/");
Reference: Web Push notifications in Firefox
If your usecase is to disable the notification following are the options :
To disable notification in Firefox browser client take help of a FirefoxProfile and pass the Key dom.webnotifications.enabled with Value as 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/");
Note : This method uses an existing FirefoxProfile
by the name debanjan stored in my local system which was created following the documentation at Creating a new Firefox profile on Windows
To disable notification in Chrome browser client take help of a setExperimentalOption() to pass a HashMap containing profile.default_content_setting_values.notifications with Value as 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/");
Reference: Web Push notifications in Firefox
edited 2 days ago
answered Apr 10 at 5:21
DebanjanB
35.4k73271
35.4k73271
This works for Firefox, but I changed one line:FirefoxProfile testprofile = profile.getProfile("default");
This is universal solution? It will be works on another hosts/os for my teammates?
– vix simplex
Apr 10 at 10:07
1
@vixsimplex I have added a reference with respect to you question within the comments. However as per best practices avoid using the default FirefoxProfile as it may contain add-ons, bookmarks, etc. As a result you may face Timeout Errors while loading the default profile.
– DebanjanB
Apr 10 at 15:11
add a comment |
This works for Firefox, but I changed one line:FirefoxProfile testprofile = profile.getProfile("default");
This is universal solution? It will be works on another hosts/os for my teammates?
– vix simplex
Apr 10 at 10:07
1
@vixsimplex I have added a reference with respect to you question within the comments. However as per best practices avoid using the default FirefoxProfile as it may contain add-ons, bookmarks, etc. As a result you may face Timeout Errors while loading the default profile.
– DebanjanB
Apr 10 at 15:11
This works for Firefox, but I changed one line:
FirefoxProfile testprofile = profile.getProfile("default");
This is universal solution? It will be works on another hosts/os for my teammates?– vix simplex
Apr 10 at 10:07
This works for Firefox, but I changed one line:
FirefoxProfile testprofile = profile.getProfile("default");
This is universal solution? It will be works on another hosts/os for my teammates?– vix simplex
Apr 10 at 10:07
1
1
@vixsimplex I have added a reference with respect to you question within the comments. However as per best practices avoid using the default FirefoxProfile as it may contain add-ons, bookmarks, etc. As a result you may face Timeout Errors while loading the default profile.
– DebanjanB
Apr 10 at 15:11
@vixsimplex I have added a reference with respect to you question within the comments. However as per best practices avoid using the default FirefoxProfile as it may contain add-ons, bookmarks, etc. As a result you may face Timeout Errors while loading the default profile.
– DebanjanB
Apr 10 at 15:11
add a comment |
Sign up or log in
StackExchange.ready(function () {
StackExchange.helpers.onClickDraftSave('#login-link');
});
Sign up using Google
Sign up using Facebook
Sign up using Email and Password
Post as a guest
Required, but never shown
StackExchange.ready(
function () {
StackExchange.openid.initPostLogin('.new-post-login', 'https%3a%2f%2fstackoverflow.com%2fquestions%2f49741876%2fhow-to-disable-push-notifications-using-selenium-for-firefox-and-chrome%23new-answer', 'question_page');
}
);
Post as a guest
Required, but never shown
Sign up or log in
StackExchange.ready(function () {
StackExchange.helpers.onClickDraftSave('#login-link');
});
Sign up using Google
Sign up using Facebook
Sign up using Email and Password
Post as a guest
Required, but never shown
Sign up or log in
StackExchange.ready(function () {
StackExchange.helpers.onClickDraftSave('#login-link');
});
Sign up using Google
Sign up using Facebook
Sign up using Email and Password
Post as a guest
Required, but never shown
Sign up or log in
StackExchange.ready(function () {
StackExchange.helpers.onClickDraftSave('#login-link');
});
Sign up using Google
Sign up using Facebook
Sign up using Email and Password
Sign up using Google
Sign up using Facebook
Sign up using Email and Password
Post as a guest
Required, but never shown
Required, but never shown
Required, but never shown
Required, but never shown
Required, but never shown
Required, but never shown
Required, but never shown
Required, but never shown
Required, but never shown