selenium爬虫:设定配置文件,不加载图片,加快爬虫效率

chrome_options = webdriver.ChromeOptions()

prefs = {"profile.managed_default_content_settings.images":2}

chrome_options.add_experimental_option("prefs",prefs)

driver = webdriver.Chrome(chrome_options=chrome_options)

你可能感兴趣的:(selenium爬虫:设定配置文件,不加载图片,加快爬虫效率)