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

查看:211
本文介绍了处理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天全站免登陆