不要使图像加载和CSS在Firefox的Selenium WebDriver测试中使用Python渲染

前端之家收集整理的这篇文章主要介绍了不要使图像加载和CSS在Firefox的Selenium WebDriver测试中使用Python渲染前端之家小编觉得挺不错的,现在分享给大家,也给大家做个参考。
我正在使用带有python绑定的Selenium 2从我们合作伙伴的网站获取一些数据。但平均来说,我花了大约13秒钟才能执行此操作。

我正在寻找一种方法来禁用图像css和flash等。

我正在使用Firefox 3.6,并且还使用pyvirtualdisplay来防止打开firefox窗口。任何其他优化加速Firefox也将有所帮助。
我已经尝试过network.http。*选项,但不是很有帮助。

并设置permissions.default.image = 2

解决方法

我已经想出了一种方法来防止Firefox加载CSS,图像和Flash。
from selenium.webdriver.firefox.firefox_profile import FirefoxProfile

def disableImages(self):
    ## get the Firefox profile object
    firefoxProfile = FirefoxProfile()
    ## Disable CSS
    firefoxProfile.set_preference('permissions.default.stylesheet',2)
    ## Disable images
    firefoxProfile.set_preference('permissions.default.image',2)
    ## Disable Flash
    firefoxProfile.set_preference('dom.ipc.plugins.enabled.libflashplayer.so','false')
    ## Set the modified profile while creating the browser object 
    self.browserHandle = webdriver.Firefox(firefoxProfile)

再次感谢@Simon和@ernie的建议。

原文链接:https://www.f2er.com/css/219999.html

猜你在找的CSS相关文章