码迷,mamicode.com
首页 > Web开发 > 详细

禁用Firefox浏览器中的CSS、Flash及Image加载

时间:2018-01-13 14:16:16      阅读:1133      评论:0      收藏:0      [点我收藏+]

标签:rmi   pad   round   pos   shp   reference   border   back   stc   

#!usr/bin/env python  
#-*- coding:utf-8 -*-  
#禁用Firefox浏览器中的CSS、Flash及Image加载

from selenium import webdriver
import time,unittest

class TestDemo(unittest.TestCase):
    def setUp(self):
        #创建Firefox浏览器的一个Options实例对象
        profile = webdriver.FirefoxProfile()
        #禁用CSS加载
        profile.set_preference(permissions.default.stylesheet,2)
        #禁用images加载
        profile.set_preference(permissions.default.image,2)
        #禁用flash插件
        profile.set_preference(dom.ipc.plugins.enabled.libflashplayer.so,False)
        #启动带有自定义设置的Firefox浏览器
        self.driver = webdriver.Firefox(firefox_profile= profile)

    def test_forbidImageFirefox(self):
        self.driver.get(http://www.iqiyi.com)
        time.sleep(10)

    def tearDown(self):
        self.driver.quit()

if __name__ == __main__:
    unittest.main()

禁用Firefox浏览器中的CSS、Flash及Image加载

标签:rmi   pad   round   pos   shp   reference   border   back   stc   

原文地址:https://www.cnblogs.com/sleeping-cat/p/8278805.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!