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);
}
});