scrapy selenium 设置chromedriver不加载图片

Posted 那时的吻狠陶醉

tags:

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

from selenium import webdriver
‘‘‘设置chromedriver不加载图片,可以加速加载页面的速度‘‘‘
chrome_opt = webdriver.ChromeOptions()
prefs={"profile.managed_default_content_settings.images":2}
chrome_opt.add_experimental_option("prefs",prefs)
browser = webdriver.Chrome(executable_path="C:\Program Files (x86)\Google\Chrome\Application\chromedriver.exe",chrome_options=chrome_opt)
browser.get("https://www.taobao.com")

以上是关于scrapy selenium 设置chromedriver不加载图片的主要内容,如果未能解决你的问题,请参考以下文章

python小白学习记录 scrapy 结合 selenium 使用自己的chrome浏览器

为啥selenium2library 的mouse over在chrome中一闪而过

xpath selenium scrapy

将selenium集成到scrapy框架中

scrapy中使用selenium来爬取页面

scrapy 集成 selenium