Tell me more ×
Facebook - Stack Overflow is a question and answer site for facebook developers. It's 100% free, no registration required.
Facebook and Stack Exchange are now working together to support the Facebook developer community. Facebook engineers participate here along with the best Facebook developers in the world. If you have a technical question about Facebook, this is the best place to ask.

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?

share|improve this question

1 Answer

up vote 1 down vote accepted

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
share|improve this answer

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

Not the answer you're looking for? Browse other questions tagged or ask your own question.