在 Python + Selenium Chrome WebDriver 中处理通知
问题描述:
如何在 Python 中处理 Selenium Chrome WebDriver 通知?
How can Selenium Chrome WebDriver notifications be handled in Python?
已尝试关闭/接受 alert
和 active element
但似乎通知必须以其他方式处理.此外,所有 Google 搜索结果都促使我使用我并不真正需要的 Java 解决方案.我是 Python 新手.
Have tried to dismiss/accept alert
and active element
but seems notifications have to be treated other way. Also, all the Google search results are driving me to Java solution which I do not really need. I'm a newbie in Python.
提前致谢.
答
您可以使用 chrome 选项禁用浏览器通知.
You can disable the browser notifications, using chrome options.
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)