在Python Selenium上使用ChromeDriver进行搜索时禁用GPS位置提醒

时间:2017-03-21 00:04:05

标签: python selenium selenium-chromedriver

我有一个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

有什么想法吗?

0 个答案:

没有答案