美文网首页我爱编程
selenium爬虫:设定配置文件,不加载图片,加快爬虫效率

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

作者: 骨头社社员Vankd | 来源:发表于2018-04-18 15:39 被阅读0次

    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爬虫:设定配置文件,不加载图片,加快爬虫效率

        本文链接:https://www.haomeiwen.com/subject/oznvkftx.html