我是casperjs的新人,确定我做错了什么.. 文档中的脚本不会在屏幕上打印任何内容:
var casper = require('casper').create();
casper.start('http://casperjs.org/', function() {
this.echo(this.getTitle());
});
casper.thenOpen('http://phantomjs.org', function() {
this.echo(this.getTitle());
});
casper.run();
安装了Phantomjs:
% phantomjs --version
2.1.1
和casperjs:
% casperjs --version
1.1.2
在OSX上运行
有什么想法吗? 谢谢!