关于selenium:在java中执行cmd命令时出现控制台错误

Console error on executing cmd command in java

我正在尝试执行一个CMD命令来从Java中崩溃应用程序

1
2
String command ="@upwork.exe --args -url=chrome://crash  -disable-web-security -script-url=https://172.27.68.6/pre_alpha/";
Process p = Runtime.getRuntime().exec(command);

问题是命令运行良好,导致应用程序崩溃,但我失败了

1
java.io.IOException: Cannot run program"@upwork.exe": CreateProcess error=2, The system cannot find the file specified

我不知道为什么会这样。有什么建议会很有帮助的


正如你的例外日志所说,The system cannot find the file specified

尝试给出@upwork.exe文件的完整路径。


您的代码试图运行@upwork.exe,但找不到。这个文件存在吗?