# selenium+chromedriver+python3 不加载图片
Posted 小鳄鱼DL
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了# selenium+chromedriver+python3 不加载图片相关的知识,希望对你有一定的参考价值。
设置chromedriver不加载图片
from selenium import webdriver
chrome_options = webdriver.ChromeOptions()
prefs={"profile.managed_default_content_settings.images":2}
chrome_opt.add_experimental_option("prefs":prefs)
driver = webdriver.Chrome(chrome_options = chrome_options)
以上是关于# selenium+chromedriver+python3 不加载图片的主要内容,如果未能解决你的问题,请参考以下文章
解决selenium.common.exceptions.WebDriverException: Message: ‘chromedriver‘ executable needs to be in P