您好,登錄后才能下訂單哦!
這篇文章將為大家詳細講解有關python爬蟲中PhantomJS測試頁面的方法,小編覺得挺實用的,因此分享給大家做個參考,希望大家閱讀完這篇文章后可以有所收獲。
下面這個例子計算了一個頁面的加載速度,同時還用到了命令行傳參的特性。新建文件保存為 loadspeed.js
var page = require('webpage').create(), system = require('system'), t, address; var page = require('webpage').create(), system = require('system'), t, address; if (system.args.length === 1) { console.log('Usage: loadspeed.js <some URL>'); phantom.exit(); } t = Date.now(); address = system.args[1]; page.open(address, function(status) { if (status !== 'success') { console.log('FAIL to load the address'); } else { t = Date.now() - t; console.log('Loading ' + system.args[1]); console.log('Loading time ' + t + ' msec'); } phantom.exit(); });
程序判斷了參數的多少,如果參數不夠,那么終止運行。然后記錄了打開頁面的時間,請求頁面之后,再紀錄當前時間,二者之差就是頁面加載速度。
phantomjs loadspeed.js http://cuiqingcai.com
運行結果
Loading http://cuiqingcai.com Loading time 11678 msec
這個時間包括 JS 渲染的時間,當然和網速也有關。
關于python爬蟲中PhantomJS測試頁面的方法就分享到這里了,希望以上內容可以對大家有一定的幫助,可以學到更多知識。如果覺得文章不錯,可以把它分享出去讓更多的人看到。
免責聲明:本站發布的內容(圖片、視頻和文字)以原創、轉載和分享為主,文章觀點不代表本網站立場,如果涉及侵權請聯系站長郵箱:is@yisu.com進行舉報,并提供相關證據,一經查實,將立刻刪除涉嫌侵權內容。