ChromeDriver 图片加载控制


设置 chromedriver 不加载图片

方法一:
# 关闭图片加载, 使得代码运行速度更快
chrome_option.add_argument('blink-settings=imagesEnabled=false')

注意: 该选项在远程调试时不会生效(需要手动进入设置->隐私和安全性中设置)

方法二:
#设置chromedriver不加载图片 
prefs = {"profile.managed_default_content_settings.images": 2} chrome_opt.add_experimental_option("prefs", prefs)

Author: Ming Hui
Reprint policy: All articles in this blog are used except for special statements CC BY 4.0 reprint polocy. If reproduced, please indicate source Ming Hui !
 Previous
Requests 模拟知乎登录 Requests 模拟知乎登录
常见 http_status_code 200 请求被成功处理 301/302 永久重定向/临时重定向 403
2020-08-09 Ming Hui
Next 
个人简历 个人简历
自我评价熟练 Fiddler,Postman,Wireshrak 抓包/请求数据分析,perfdog 性能监测工具。 熟练 Python 运用 Scrapy 框架,进行分布式爬虫,运用 selenium 验证码识别,文字识别,进行模拟登录。
2020-08-08 Ming Hui