美文网首页
12.让selenium不加载图片

12.让selenium不加载图片

作者: starrymusic | 来源:发表于2019-04-01 16:17 被阅读0次

让selenium操控浏览器访问网页时不加载图片,前面这几行代码基本上都是固定的。

#让浏览器不加载图片
#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)
driver = webdriver.Chrome(chrome_options=chrome_opt)
driver.get("https://www.oschina.net/blog")
driver.close()

相关文章

网友评论

      本文标题:12.让selenium不加载图片

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