您好我在CasperJS中运行多个测试.js时遇到了问题。
我想运行多个文件test .js
我在控制台中执行此命令:
casperjs /var/www/run.js / var / www / casper / tests
看到这个错误:
CasperError:casper.test属性仅可使用casperjs test
命令
在任何测试中都不要使用属性'test'。
答案 0 :(得分:0)
如果您执行测试套件,则必须使用casperjs 测试命令。
casperjs test /var/www/casper/tests
或者进入包含tests文件夹的库,然后执行以下命令之一:
casperjs test tests
casperjs test tests/
casperjs test ./tests
http://casperjs.readthedocs.org/en/latest/testing.html
如果你想要包含一些文件:使用--includes
https://gist.github.com/n1k0/2948039
或phantom.injectJs(path / to / your / jsFile.js)