实现selenium+Chrome爬取时不加载图片——配置

Posted 言守中

tags:

篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了实现selenium+Chrome爬取时不加载图片——配置相关的知识,希望对你有一定的参考价值。


# -*- coding:utf-8 -*-
from selenium import webdriver

‘‘‘
设置页面不加载图片,这样可以加快页面的渲染,减少爬虫的等待时间,提升爬取效率
固定配置如下:
‘‘‘
chrome_opt = webdriver.ChromeOptions()
prefs = {‘profile.managed_default_content_settings.images‘: 2}
chrome_opt.add_experimental_option(‘prefs‘,prefs)

# webdriver.Chrome(executable_path=‘path‘)启动失败的话,可以指定ChromeDriver驱动的位置path路径
browser = webdriver.Chrome(chrome_options=chrome_opt)

# 启动淘宝测试结果
browser.get(‘https://www.taobao.com‘)

 

以上是关于实现selenium+Chrome爬取时不加载图片——配置的主要内容,如果未能解决你的问题,请参考以下文章

解决selenium.WebDriverException: Message: ‘chromedriver‘ executable needs to be in Path

java selenium爬取验证图片是否加载完成

Selenium chrome配置不加载图片Python版

selenium爬取优酷页面并下载图片

python网页爬虫开发之六-Selenium使用

Selenium chrome配置不加载图片