我见过这样的例子,展示了如何使用 casperJS 登录 facebook: 如何使用 CasperJS 登录网站?
但我无法让这个代码为我工作。我对登录部分不感兴趣,我只想将任何 facebook 页面加载到 casperjs 或 phantomjs 中,但加载时总是失败。
这对其他人有用吗?还是 facebook 检测到浏览器并且不再允许访问?
这是我无法做的简化版本:
var casper = require('casper').create({
verbose: true,
logLevel: 'debug',
pageSettings:{
userAgent :'Mozilla/5.0 (Macintosh; Intel Mac OS X 10_7_5) AppleWebKit/537.4 (KHTML, like Gecko) Chrome/22.0.1229.94 Safari/537.4' ,
loadImages: false, // The WebPage instance used by Casper will
loadPlugins: false // use these settings
}
});
casper.start()
casper.thenOpen('https://www.facebook.com/pfchangs', function() {
this.echo(this.getHTML());
//this just prints out empty page: <html><head></head><body></body></html>
});
casper.run();
我在 Windows 7 上运行它