Hi,
I have to run Selenium Standalone.jar and IEServer.exe as a prerequisite to executing WebDriver Java scripts on a remote machine. Instead a running them from command prompt is it possible to build a utility which when started starts of the jar and exe.
Is it possible to only show the utility name in the task manager and not show Java.exe and IEServer.exe
The command to invoke jar and IEServer are
cd %~dp0
@set IE=-Dwebdriver.ie.driver="%~dp0\IEDriverServer.exe"
@set SELENIUM_SERVER_EXE=selenium-server-standalone-2.41.0.jar
start javaw %IE% -jar %SELENIUM_SERVER_EXE%