在 Python + Selenium Chrome WebDriver 中处理通知 [英] Handle notifications in Python + Selenium Chrome WebDriver

查看:36
本文介绍了在 Python + Selenium Chrome WebDriver 中处理通知的处理方法,对大家解决问题具有一定的参考价值,需要的朋友们下面随着小编来一起学习吧!

问题描述

如何在 Python 中处理 Selenium Chrome WebDriver 通知?

How can Selenium Chrome WebDriver notifications be handled in Python?

已尝试关闭/接受 alertactive 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)

这篇关于在 Python + Selenium Chrome WebDriver 中处理通知的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持IT屋!

查看全文
登录 关闭
扫码关注1秒登录
发送“验证码”获取 | 15天全站免登陆