如何在 python 中的 selenium webdriver 中禁用 chrome 通知弹出窗口

Posted

技术标签:

【中文标题】如何在 python 中的 selenium webdriver 中禁用 chrome 通知弹出窗口【英文标题】:how to disable chrome notifications popup in selenium webdriver in python 【发布时间】:2020-11-22 17:01:26 【问题描述】:
 from selenium.webdriver.chrome.options import Options
    opt = Options()
    opt.add_argument("--disable-infobars")
    opt.add_argument("start-maximized")
    opt.add_argument("--disable-extensions")
    opt.add_experimental_option("prefs", \
        "profile.default_content_setting_values.notifications":1
        )

这不起作用帮助 如何使用 python 在 selenium 中关闭浏览器通知

【问题讨论】:

什么样的通知?那些允许/阻止通知类型? 是允许/阻止类型 点赞通知允许和禁止 【参考方案1】:

通知值需要设置为 2 而不是 1

    chrome_options = webdriver.ChromeOptions()
    prefs = "profile.default_content_setting_values.notifications" : 2
    chrome_options.add_experimental_option("prefs",prefs)
    driver = webdriver.Chrome(chrome_options=chrome_options)

参考:-Handle notifications in Python + Selenium Chrome WebDriver

【讨论】:

以上是关于如何在 python 中的 selenium webdriver 中禁用 chrome 通知弹出窗口的主要内容,如果未能解决你的问题,请参考以下文章

python selenium,我无法从文本框中找到元素类或 id

学习小狂欢~Python利用 Selenium实现案例

爬虫入门Selenium用法简介

如何获得 Python Selenium 中的最后一堂课

Selenium WebDriver如何使滚动条滚动到最元素位置

如何在 python 中的 selenium webdriver 中禁用 chrome 通知弹出窗口