gpt4 book ai didi

python - 在 Python + Selenium Chrome WebDriver 中处理通知

转载 作者:太空宇宙 更新时间:2023-11-03 12:31:24 26 4
gpt4 key购买 nike

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

已尝试关闭/接受 alertactive element 但似乎必须以其他方式处理通知。此外,所有谷歌搜索结果都促使我使用我并不真正需要的 Java 解决方案。我是 Python 的新手。

提前致谢。

enter image description here

最佳答案

您可以使用 chrome 选项禁用浏览器通知。

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 - 在 Python + Selenium Chrome WebDriver 中处理通知,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/41400934/

26 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com