处理Python + Selenium Chrome WebDriver中的通知

编程入门 行业动态 更新时间:2024-10-14 06:19:20
本文介绍了处理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)

更多推荐

处理Python + Selenium Chrome WebDriver中的通知

本文发布于:2023-11-27 23:21:30,感谢您对本站的认可!
本文链接:https://www.elefans.com/category/jswz/34/1640008.html
版权声明:本站内容均来自互联网,仅供演示用,请勿用于商业和其他非法用途。如果侵犯了您的权益请与我们联系,我们将在24小时内删除。
本文标签:通知   Selenium   Python   WebDriver   Chrome

发布评论

评论列表 (有 0 条评论)
草根站长

>www.elefans.com

编程频道|电子爱好者 - 技术资讯及电子产品介绍!