使用phantomjs对网页截图

phantomjs官网:http://phantomjs.org/


var page = require('webpage').create()

page.open('http://www.baidu.com',function(status){

console.info("start capu');

if(status!=='success'){

phantom.exit();

}else{

window.setTimeout(function (){

page.render('baidu.png');

phantom.exit();

},50000);

}

});

你可能感兴趣的:(使用phantomjs对网页截图)