We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 7ba1186 commit 28955ccCopy full SHA for 28955cc
java/client/test/com/thoughtworks/selenium/testing/SeleniumAppServer.java
@@ -27,6 +27,10 @@ public class SeleniumAppServer extends JettyAppServer {
27
28
private static final String RC_CONTEXT_PATH = "/selenium-server";
29
30
+ public SeleniumAppServer() {
31
+ this(detectHostname(), getHttpPortFromEnv(), getHttpsPortFromEnv());
32
+ }
33
+
34
public SeleniumAppServer(String hostname, int httpPort, int httpsPort) {
35
super(hostname, httpPort, httpsPort);
36
ServletContextHandler context = addResourceHandler(RC_CONTEXT_PATH, findRootOfRcTestPages());
0 commit comments