-1

我刚刚开始尝试使用 CasperJS 进行一些测试,但我显然很糟糕,因为我已经将我的代码隔离到第一个任务,:

"use strict";
var casper = require('casper').create({
    verbose: true,
    logLevel: 'debug'
    waitTimeout: 10000
});
phantom.cookiesEnabled = true;

casper.start('http://foobar.com', function afterstart() {
    if (this.exists('.logo-link')) {
        this.echo('BOOYA! Page is loaded', 'INFO');
    } else {
        this.echo('Page didnt load, something went all screwy.', 'ERROR');
    }
});

casper.run();

通过 linter 运行它,进行适当的更改,但我仍然收到此错误:

Test file: Test.js                                                              
FAIL SyntaxError: Parse error
#    type: uncaughtError
#    error: "SyntaxError: Parse error"
SyntaxError: Parse error                                                        
FAIL 1 tests executed in 0.103s, 0 passed, 1 failed.                            

Details for the 1 failed test:

In Test.js:0
uncaughtError: SyntaxError: Parse error

我查找了一些可能的解释,我添加了 phantom.cookiesEnabled = true,但我根本想不通。

4

2 回答 2

2

从 phantomjs "SyntaxError: Parse error" 消息中获取更多信息的类似问题的两个最佳答案是:

1)运行它node

node Test.js

2) 使用在线语法检查器,例如http://esprima.org/demo/validate.html

于 2015-01-30T10:14:19.653 回答
1

你少了一个逗号:

logLevel: 'debug' <--- Right here
waitTimeout: 10000
于 2013-07-11T04:43:13.737 回答