批量运行PhantomJS

批量运行PhantomJS

我有一个关于创建调用 phantomjs 应用程序并使用两个文件的批处理文件的问题。

文件概述:

  • phantomjs应用在:I:/path/to/my/file/test/phantomjs
  • phantomjs runnerfile 中I:/path/to/my/file/test/runner.js
  • 测试文件I:/path/to/my/file/unit/testfile.js

如何完成执行以下操作的批处理文件:

phantomjs runner.js file:///I:/path/to/my/file/unit/SpecRunner.html

因为当我运行批处理时,它说找不到文件(从 C:\windows\system32\cmd.exe 运行)

有人可以指导我如何实现这一目标吗

答案1

"path-to-\phantomjs.exe" "path-to-\runner.js" "I:\path\to\my\file\unit\SpecRunner.html"

相关内容