4

私はWindowsを使用しています。CasperJS テスト フレームワークを使用しようとしています。

私はphantomjsバージョン1.9.0を使用しています。casperjs バージョン 1.0.2 を使用しています。

私が走るとき

casperjs test cow-test.js

以下が返却されます。

Test file: cow-test.js
FAIL TypeError: 'undefined' is not a function (evaluating 'casper.test.begin')
#    type: uncaughtError
#    error: "TypeError: 'undefined' is not a function (evaluating 'casper.test.begin')"
TypeError: 'undefined' is not a function (evaluating 'casper.test.begin')
  C:/cow-test.js:16
FAIL 1 tests executed in 0.116s, 0 passed, 1 failed.

Details for the 1 failed test:

In cow-test.js:0
   uncaughtError: TypeError: 'undefined' is not a function 
   (evaluating  'casper.test.begin')
    var cow = {};
    test.assert(cow);
    test.done();
})')

私がするだけなら

console.log(casper.test);

以下が返されます

[object Object]

私がするだけなら

console.log(casper.test.begin);

以下が返却されます。

undefined

私は何をしますか?特定のディレクトリから「casperjs test cow-test.js」を実行する必要がありますか?

または、他の何か?

ありがとう、アンドレ Andre_Mikulec@Hotmail.com

4

2 に答える 2

7

サイト上のドキュメントとコードはdevelバージョン1.1用ですが、安定したバージョンのcasperjsを使用しています

于 2013-07-29T07:16:38.480 に答える