我有一个python脚本,使用chromedriver和selenium搜索Bing。使用移动仿真时,某些搜索会触发GPS位置警报通知。我的问题是,如何在Chrome上完全停用这些提醒?
我试过以下但没有运气:
UA_MOBILE = { "deviceName": "Apple iPhone 6 Plus" }
chromeOptionsMobile = webdriver.ChromeOptions()
chromeOptionsMobile.add_experimental_option('mobileEmulation', UA_MOBILE)
prefs = {
'profile.default_content_setting_values.notifications' : 2,
'profile.default_content_setting_values.geolocation' : 2,
'profile.default_content_setting_values.popups' : 2,
}
chromeOptionsMobile.add_experimental_option('prefs', prefs)
提醒图片:GPS Location Alert
有什么想法吗?