Splash
跟以前咱們介紹的 Selenium ( 參考 Selenium 與自動化測試 —— 《Selenium 2 自動化測試實戰》讀書筆記) 很相似,均可以理解成一個瀏覽器,提供網頁動態渲染(css、javascript、flash 等)服務,而且都支持 HTTP API 與之交互。javascript
但不一樣點在於:css
Splash 更輕量級,但缺點是功能沒有Selenium豐富。(因此 Selenium 才稱得上是自動化測試框架,Splash更多的算一種網頁渲染服務)html
Splash 的安裝、配置、使用更簡單java
Splash 支持異步,能提升爬取效率node
文檔地址:https://splash.readthedocs.io/en/stable/python
注意:事先安裝好 docker。web
docker run -p 8050:8050 scrapinghub/splash
docker
部署在遠程服務器記得加 -d 參數,它表明將 Docker 容器以守護態運行,這樣在斷開遠程服務器鏈接後,不會終止 Splash 服務的運行。json
安裝好後,打開 http://localhost:8050
便可訪問,頁面以下:api
本文安裝版本爲 v3.4。
能夠在此 web 頁面來使用,也能夠用下面介紹的 API 調用方式,更靈活。
http://localhost:8050/render.html?url=https://www.baidu.com http://localhost:8050/render.png?url=https://www.baidu.com http://localhost:8050/render.jpeg?url=https://www.baidu.com http://localhost:8050/render.har?url=https://www.baidu.com http://localhost:8050/render.json?url=https://www.baidu.com
除了上面指定的最簡單的url、render類型,還能夠經過 Lua 腳本執行更復雜的渲染操做和交互邏輯(即用 execute)。
咱們用 python 代碼爲例:
import requests from urllib.parse import quote lua = """ function main(splash) return 'hello' end """ url = 'http://localhost:8050/execute?lua_source=' + quote(lua) response = requests.get(url) print(response.text)
下面咱們對 Lua 腳本的寫法作更多的介紹。
function main(splash, args) assert(splash:go(args.url)) assert(splash:wait(0.5)) return { html = splash:html(), png = splash:png(), har = splash:har(), } end
接下來針對這個最基本的 demo,來展開介紹。
main 函數就是 splash 默認要調用的函數,因此這裏保持固定寫法就好。
而 main 的返回值,既能夠是字典形式,也能夠是字符串形式,最後都會轉化爲 HTTP Response。
splash 相似於 Selenium 中的 WebDriver 對象。
上面提到的 main 函數的第二個參數 args 實際上是 splash 對象的其中一個屬性,即:
splash.args = args
splash.resource_timeout = 0.1 - 設置超時時間。若是設置爲 0 或 nil (相似 Python 中的None),表明不檢測超時。
此屬性適合在網頁加載速度較慢的狀況下設置
splash.js_enabled = false - 是否執行 js(默認爲 ture)
splash.images_enabled = false 是否加載圖片(默認爲 ture)
當心 image 不加載致使個別 DOM 渲染出錯
splash.plugins_enabled = false - 是否加載瀏覽器插件,如 Flash 插件 (默認 false)
splash.scroll_position = {x=100, y=200} = 頁面上下或左右滾動
go() - 模擬 GET 和 POST 請求
http_get() - 模擬 GET 請求
http_post() - 模擬 POST 請求
function main(splash, args) -- 錯誤處理 local ok, reason = splash:go{"http://httpbin.org/post", http_method="POST", body="name=Germey"} if ok then return splash:html() end end
wait() - 等待。相似 python 中的 sleep(多與 go 配合,緊接在 go 後面)
爲何 splash 沒有 selenium 的 expected_conditions(預期條件判斷)方法,如presence_of_element_located。
call_later() - 相似 JavaScript 的 settimeout
evaljs() - 執行 js 代碼
local title = splash:evaljs("document.title")
runjs() 跟 evaljs() 功能相似,只不過語義上更傾向於只調用不關心返回值。
autoload() 跟 evaljs() 功能相似,只不過語義上更傾向於預先加載。
jsfunc() - JavaScript 方法轉換爲 Lua 腳本
這個好,畢竟我 Lua 語法不熟。
function main(splash, args) local get_div_count = splash:jsfunc([[ function () { var body = document.body; var divs = body.getElementsByTagName('div'); return divs.length; } ]]) splash:go("https://www.baidu.com") return("There are %s DIVs"):format(get_div_count()) end
url() - 獲取/設置 url
html() / set_content() - 獲取/設置 html 內容
splash:set_content ("
hello ")
png() / jpeg() - 獲取頁面截圖
har() - 獲取頁面加載過程描述
get_cookies() / add_cookie() / clear_ cookies() - 獲取/設置/清除 html 內容
splash:add_cookie({"sessionid", "asdasd", "/", domain="http://example.com" })
set_user_agent() - 設置 user-agent
set_custom_headers() - 設置 header
自定義程度更高,能夠設置 user_agent、cookies 等等
splash:set_custom_headers({ ["User-Agent"] = "Splash", ["Site"] = "Splash", })
get_viewport_size() / set_viewport_size(width, height) - 獲取/設置頁面大小
set_viewport_full() - 設置全屏
select() - css 選擇器 (選擇首個)
input = splash:select("#kw」) -- 點擊控件 input:mouse_click() -- 給控件輸入文本 input:send_text('Splash')
selectAll() - css 選擇器 (選擇所有)
-- 經過 css 選擇器選中了節點的正文內容,隨後遍歷了全部節點,將其中的文本獲取下來 local texts = splash:select_all('.quote .text') local results = {} for index, text in ipairs(texts) do results[index] = text.node.innerHTML end
待寫。具體可看原書。
《Python 3網絡爬蟲開發實戰》