将 Selenium 作为预构建事件运行时,Visual Studio 2010 挂起

发布于 2024-11-06 04:08:27 字数 437 浏览 3 评论 0原文

我创建了一个bat文件,它调用名为run-selenium-server.bat的selenium服务器,其中包含:

java -jar D:\temp\selenium-server\selenium-server.jar

此外,我还在项目属性“构建事件”中添加了预构建事件命令行:

"$(SolutionDir)..\references\selenium-server\run-selenium-server.bat"

路径是正确的,但是当我构建项目:Visual Studio 2010 挂起,我必须打开 Process Explorer 来终止 java 进程。

我注意到输出窗口显示了预构建命令输出。有没有办法直接从 Visual Studio 中将此 bat 文件作为单独的 DOS 进程运行?

I have created a bat file which calls selenium server called run-selenium-server.bat which has:

java -jar D:\temp\selenium-server\selenium-server.jar

Also I have added in my project properties "Build Events" the pre-build event command line:

"$(SolutionDir)..\references\selenium-server\run-selenium-server.bat"

The path is correct but when I build the project: Visual Studio 2010 just hangs and I have to open Process Explorer to kill java process.

I noticed Output window is showing the pre-build command output. Is there a way to run this bat file as a separate DOS process directly from Visual Studio?

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

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

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(1

美羊羊 2024-11-13 04:08:27

您可以尝试

call "$(SolutionDir)..\references\selenium-server\run-selenium-server.bat"

此 MSDN 页面< /a>.另请注意,最好使用 start 命令启动 java.exe,如下所示:

start java -jar D:\temp\selenium-server\selenium-server.jar

You could try

call "$(SolutionDir)..\references\selenium-server\run-selenium-server.bat"

This is noted on this MSDN page. Also note that it's probably best to start the java.exe using the start command like so:

start java -jar D:\temp\selenium-server\selenium-server.jar
~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文