I'm trying to program in Java a class to start my Selenium Server in case it is down for some reason. I found very good help here: http://www.testingexcellence.com/how-to-start-selenium-server-with-java-code/
I see that some if the configuration parameters can be set using the class RemoteControlConfiguration and methods such as setPort, setLogOutFileName, setTimeoutInSeconds, ...
The problem is that my Selenium Server connects to a proxy in this way:
java -jar selenium-server.jar -Dhttp.proxyHost=my.proxy.com -Dhttp.proxyPort=8080
Unfortunately, I haven't found how to put this into java code. My question is: Is it possible to set the proxyHost and proxyPort values in java?
Thanks for your time =)
}Panacea{