我正在尝试使用我的Yii2项目使用selenium服务器。 我使用该命令在win 10上成功安装了selenium-server-standalone:
composer global require se/selenium-server-standalone
但是当我尝试启动selenium-server-standalone时,我有错误消息::
sh is no internal or external
command, operable program or batch file.
我的PATH中有java和selenium,我在C:\Users\***\AppData\Roaming\Composer\vendor.
中也有一个selenium-server-standalone.bat文件
请告诉我如何解决这个问题。
答案 0 :(得分:0)
您已经提到过您尝试在Win10计算机上运行selenium服务器,而您遇到的错误是sh is no internal or external command, operable program or batch file.
似乎您在命令中键入sh selenium-server-standalone.bat
。那是为了Linux。
对于Windows机器,只需转到批处理文件所在的路径(C:\Users\***\AppData\Roaming\Composer\vendor
),键入selenium-server-standalone.bat
并按Enter键。 Selenium服务器将启动。