我是CasperJs的新手,通过快速入门,这段代码对我有用:
SELECT username,first_name,last_name, NVL(salary,0) "salary"
FROM customer
WHERE NVL(salary,0) < (SELECT AVG(NVL(salary,0)) FROM customer);
但对于某些网页(https://www.seznam.cz,https://www.slever.cz),我只获得空标题/屏幕截图/无论
我像这样执行脚本:
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();
并且选项--debug不知道什么是错的。我试图像这样执行脚本:
casperjs --ignore-ssl-errors=true hello.js
但结果相同。
我在Mac OS X上使用CasperJs 1.0.4和PhantomJs 2.0。
感谢您的任何建议
编辑:我已经下载了测试版的casperjs,现在一切正常:)