selenium 定制启动 chrome 的选项
Posted 菲菲菲菲菲常新的新手
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了selenium 定制启动 chrome 的选项相关的知识,希望对你有一定的参考价值。
-
序
使用
selenium
时,我们可能需要对chrome
做一些特殊的设置,以完成我们期望的浏览器行为,比如阻止图片加载
,阻止javascript执行
等动作。这些需要selenium
的ChromeOptions
来帮助我们完成什么是 chromeoptions
chromeoptions
是一个方便控制chrome
启动时属性的类。通过selenium
的源码,可以看到,chromeoptions
主要提供如下的功能:- 设置 chrome 二进制文件位置 (binary_location)
- 添加启动参数 (add_argument)
- 添加扩展应用 (add_extension, add_encoded_extension)
- 添加实验性质的设置参数 (add_experimental_option)
- 设置调试器地址 (debugger_address)
定制启动选项
我们最常用的是三个功能
- 添加chrome启动参数
- 修改chrome设置
- 添加扩展应用
下面以
python
为例一一说明,其他语言可以参考 selenium 源码添加 chrome 启动参数
# 启动时设置默认语言为中文 UTF-8 from selenium import webdriver options = webdriver.ChromeOptions() options.add_argument(‘lang=zh_CN.UTF-8‘) driver = webdriver.Chrome(chrome_options = options)
- 1
- 2
- 3
- 4
- 5
最常用的应用场景是设置
user-agent
以用来模拟移动设备,比如模拟iphone6
options.add_argument(‘user-agent="Mozilla/5.0 (iPhone; CPU iPhone OS 9_1 like Mac OS X) AppleWebKit/601.1.46 (Khtml, like Gecko) Version/9.0 Mobile/13B143 Safari/601.1"‘)
- 1
修改chrome设置
# 禁止图片加载 from selenium import webdriver options = webdriver.ChromeOptions() prefs = { ‘profile.default_content_setting_values‘ : { ‘images‘ : 2 } } options.add_experimental_option(‘prefs‘,prefs) driver = webdriver.Chrome(chrome_options = options)
- 1
- 2
- 3
- 4
- 5
- 6
- 7
- 8
- 9
- 10
更多实验参数请参考chromedriver 官网
添加扩展
from selenium import webdriver options = webdriver.ChromeOptions() extension_path = ‘/extension/path‘ options.add_extension(extension_path) driver = webdriver.Chrome(chrome_options = options)
- 1
- 2
- 3
- 4
- 5
附赠添加代理方法
from selenium import webdriver PROXY = "proxy_host:proxy:port" options = webdriver.ChromeOptions() desired_capabilities = options.to_capabilities() desired_capabilities[‘proxy‘] = { "httpProxy":PROXY, "ftpProxy":PROXY, "sslProxy":PROXY, "noProxy":None, "proxyType":"MANUAL", "class":"org.openqa.selenium.Proxy", "autodetect":False } driver = webdriver.Chrome(desired_capabilities = desired_capabilities)
- 1
- 2
- 3
- 4
- 5
- 6
- 7
- 8
- 9
- 10
- 11
- 12
- 13
- 14
版权声明:本作品由掠雪墨影创作,采用知识共享署名 4.0 国际许可协议进行许可。转载请以链接形式标明本文地址。
转http://blog.csdn.net/vinson0526/article/details/51850929
以上是关于selenium 定制启动 chrome 的选项的主要内容,如果未能解决你的问题,请参考以下文章
Python学习笔记之selenium 定制启动 chrome 的选项
selenium.common.exceptions.WebDriverException: Message: unknown Error: cannot find Chrome binary(示例代