python+selenium处理chrom显示通知弹框
2021-01-17 01:12
标签:ica 技术 chrome graph pytho sel values height 脚本 使用chrome打开weibo.com会出现以下界面的弹出框: 这东西不属于页面alert弹框,而是属于浏览器的设置项。 要关掉它,需要对浏览器进行属于配置。具体见下面脚本: python+selenium处理chrom显示通知弹框 标签:ica 技术 chrome graph pytho sel values height 脚本 原文地址:https://www.cnblogs.com/vigogogogo/p/12922762.htmlfrom selenium import webdriver
import time
options = webdriver.ChromeOptions()
prefs = {
‘profile.default_content_setting_values‘:{
‘notifications‘:2
}
}
options.add_experimental_option(‘prefs‘,prefs)
driver = webdriver.Chrome(options = options)
driver.get("https://weibo.com/")
driver.implicitly_wait(10)
上一篇:Java数据类型
文章标题:python+selenium处理chrom显示通知弹框
文章链接:http://soscw.com/index.php/essay/42959.html