使用 xampp 运行 Selenium RC 和 PHP(phpunit 无法识别错误)
我已遵循这篇文章中的所有步骤,但是当我运行 pear mytest.php 时,出现错误 http://jodyt.com/2009/03/selenium-rc- and-php/#comments
phpunit is not recognized as an internal or external command, operable program or batch file
我不知道我可能做错了什么。请大家提供任何帮助,我们将不胜感激。
预先感谢您。 达~~
I have followed all the steps on this post but when i run the pear mytest.php i get the error
http://jodyt.com/2009/03/selenium-rc-and-php/#comments
phpunit is not recognized as an internal or external command, operable program or batch file
I dont know what i might be doing wrong. please guys any help will be highly appreciated.
Thanks you in advance.
D~~
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
这是因为 Windows 无法将 phpunit 识别为程序,因为 phpunit.exe 的位置未添加到 Path 环境变量。
只需在 Path 环境变量值的末尾添加 ;C:/xampp/php (注意分号很重要,而且我假设您的 xampp 位于 C:/ 中)
希望这会有所帮助。
This is because windows is not able to recognize phpunit as a program because location of phpunit.exe is not added to Path environment variable.
just add ;C:/xampp/php at the end of the value of Path environment variable(note semicolon is important, Also I'm assuming your xampp is in C:/)
Hope this helps.