zoukankan      html  css  js  c++  java
  • 禁用Chrome浏览器中的Image加载

    #!usr/bin/env python  
    #-*- coding:utf-8 -*-  
    #禁用Chrome浏览器中的Image加载
    
    from selenium import webdriver
    import time,unittest
    from selenium.webdriver.chrome.options import Options
    
    class TestDemo(unittest.TestCase):
        def setUp(self):
            #创建Chrome浏览器的一个Options实例对象
            chrome_options = Options()
            #设置Chrome禁用图片加载的设置
            prefs = {'profile.managed_default_content_settings.images':2}
            #添加屏蔽Chrome浏览器禁用图片的设置
            chrome_options.add_experimental_option('prefs',prefs)
            #启动带有自定义设置的Chrome浏览器
            self.driver = webdriver.Chrome(chrome_options = chrome_options)
    
        def test_forbidImageChrome(self):
            self.driver.get('https://www.taobao.com')
            time.sleep(10)
    
        def tearDown(self):
            self.driver.quit()
    
    if __name__ == '__main__':
        unittest.main()
  • 相关阅读:
    php stdClass转数组
    PHP 获取1970年前的时间戳,且为负
    springboot响应格式Resullt封装
    php使用elasticsearch
    day0620211207
    day0820211209
    day022021121
    day0520211206
    day0720211208
    day0320211202
  • 原文地址:https://www.cnblogs.com/sleeping-cat/p/8278802.html
Copyright © 2011-2022 走看看