We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent a1d513d commit 3da18b0Copy full SHA for 3da18b0
seleniumbase/core/browser_launcher.py
@@ -273,6 +273,9 @@ def _create_firefox_profile(
273
profile.set_preference("app.update.silent", True)
274
profile.set_preference("browser.privatebrowsing.autostart", True)
275
profile.set_preference("devtools.errorconsole.enabled", False)
276
+ profile.set_preference("dom.webnotifications.enabled", False)
277
+ profile.set_preference("dom.disable_beforeunload", True)
278
+ profile.set_preference("browser.contentblocking.database.enabled", False)
279
profile.set_preference("extensions.allowPrivateBrowsingByDefault", True)
280
profile.set_preference("extensions.PrivateBrowsing.notification", False)
281
profile.set_preference("extensions.systemAddon.update.enabled", False)
0 commit comments