selelium中使用兩種方法使得開啟瀏覽器不載入圖片
阿新 • • 發佈:2019-02-16
第一種:使用webdriver.Chrome這個方法使得開啟介面不載入圖片
# -*- coding:utf-8 -*- __author__ = 'bobby' from selenium import webdriver chrome_opt = webdriver.ChromeOptions() prefs = {"profile.managed_default_content_setting.images":2} chrome_opt.add_experimental_option("prefs",prefs) browser = webdriver.Chrome(executable_path="C:/Program Files (x86)/Google/Chrome/Application/chromedriver.exe") browser.get("www.taobao.com")
第二種:使用phantom.js開啟網頁不載入網頁圖片
# -*- coding:utf-8 -*- __author__ = 'bobby' from selenium import webdriver #phantomjs,沒有介面的瀏覽器,多程序情況下phantomjs效能會下降比較嚴重 browser = webdriver.PhantomJS(executable_path="C:/Program Files (x86)/Google/Chrome/Application/chromedriver.exe") browser.get("www.taobao.com") print(browser.page_source) browser.quit()