当用selenium中的get(url)方法打开微博,Chrome弹出通知窗口,导致Selenium语句失效
此篇记录一下学到的解决方法
options = webdriver.ChromeOptions()
prefs = {
'profile.default_content_setting_values':
{
'notifications': 2
}
}
options.add_experimental_option('prefs', prefs)
wb= webdriver.Chrome(chrome_options=options)
wb.get(url)
wb.implicitly_wait(5)
亲测有效!