Windows批处理文件命令不执行

发布于 2025-01-22 02:02:19 字数 799 浏览 0 评论 0原文

我正在尝试使用带有Selenium Grid的Docker运行Selenium Tests,我正在执行SRC \ test \ Resources文件夹中存在的批处理文件。

以下是批处理文件的内容:

cd "%cd%\src\test\resources"
docker-compose -f docker-compose-v3.yml up -d

下面是beforesuite方法中的Java代码:

String gridFilePath = new File(System.getProperty("user.dir") + "\\src\\test\\resources\\start_docker_grid.bat").getAbsolutePath();
System.out.println("absolutePath: " + gridFilePath);
Runtime.getRuntime().exec("cmd /c start \"" + gridFilePath + "\"");

它打开命令提示符窗口,但批处理文件中的命令均未执行。

任何人可以在这里提供帮助吗?

I am trying to run Selenium tests using Docker with Selenium grid for which I am executing a batch file which is present in src\test\resources folder.

Below is the content of the batch file:

cd "%cd%\src\test\resources"
docker-compose -f docker-compose-v3.yml up -d

Below is the Java code in BeforeSuite method:

String gridFilePath = new File(System.getProperty("user.dir") + "\\src\\test\\resources\\start_docker_grid.bat").getAbsolutePath();
System.out.println("absolutePath: " + gridFilePath);
Runtime.getRuntime().exec("cmd /c start \"" + gridFilePath + "\"");

It opens the command prompt window but none of the commands in the batch file are executed.

enter image description here

Can anyone please help here ?

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。
列表为空,暂无数据
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文