是否可以在Selenium和Chrome webdrive上禁用加载图像(仅限jpg和png)?

时间:2018-04-10 15:04:59

标签: python selenium selenium-chromedriver

在我努力提高我的硒测试应用程序的性能时,我想知道是否可以避免加载某些文件,如图像(jpg和png)。参数" - 禁用图像"禁用所有图片,包括" gif",在我的canse中可以是谷歌分析标签,我必须抓住它。

1 个答案:

答案 0 :(得分:1)

是的,您可以在profile.managed_default_content_settings.image中指定ChromeOptions来执行此操作。例如:

chromeOptions = webdriver.ChromeOptions()
prefs = {"profile.managed_default_content_settings.images": 2}
chromeOptions.add_experimental_option("prefs", prefs)
driver = webdriver.Chrome(chrome_options=chromeOptions)

至于特定图像格式,我认为不可能