J'ai trouvé deux exemples sur Stack Overflow sur la désactivation des notifications, mais aucun d'entre eux n'a fonctionné pour moi : les notifications push s'affichent toujours au lancement du navigateur. Voici le code que j'ai essayé :
Exemple 1 :
browser_profile = webdriver.FirefoxProfile()
browser_profile.set_preference("dom.webnotifications.enabled", False)
driver = webdriver.Firefox(firefox_profile=browser_profile)
Exemple 2 :
from selenium.webdriver.firefox.options import Options
options = Options()
options.set_preference("dom.webnotifications.enabled", False)
browser = webdriver.Firefox(firefox_options=options)
Notification