我安裝了PhantomJS,並且示例腳本the official Phantom website工作正常。PhantomJS截圖始終爲空
我試圖讓this screenshot example工作:
var page = require('webpage').create();
page.open('http://github.com/', function() {
page.render('github.png');
phantom.exit();
});
但我不斷收到一個空白github.png文件稱重582KB
任何想法?
你能上傳png文件嗎?如果它很大,它可能不是空白的。 – phihag
也許URL需要是'https:// github.com /',因爲GitHub現在可以安全地提供服務。 –
爲了避免這種猜測,我只是用最新的PhantomJS嘗試了這個確切的代碼,它對我來說工作正常。 – smarx