不想在Selenium WebDriver中的Firefox上加载图像和CSS渲染-Python

不想在Selenium WebDriver中的Firefox上加载图像和CSS渲染-Python,第1张

不想在Selenium WebDriver中的Firefox上加载图像和CSS渲染-Python

我想出了一种方法来阻止Firefox加载CSS,图像和Flash。

from selenium.webdriver.firefox.firefox_profile import FirefoxProfiledef 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的建议。



欢迎分享,转载请注明来源:内存溢出

原文地址: http://outofmemory.cn/zaji/5112060.html

(0)
打赏 微信扫一扫 微信扫一扫 支付宝扫一扫 支付宝扫一扫
上一篇 2022-11-17
下一篇 2022-11-17

发表评论

登录后才能评论

评论列表(0条)

保存