We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 679670b commit 936669eCopy full SHA for 936669e
java/client/test/org/openqa/selenium/environment/BUILD.bazel
@@ -68,7 +68,7 @@ java_library(
68
java_binary(
69
name = "appserver",
70
testonly = True,
71
- main_class = "org.openqa.selenium.environment.webserver.JettyAppServer",
+ main_class = "org.openqa.selenium.environment.webserver.NettyAppServer",
72
visibility = [
73
"//:__pkg__",
74
"//dotnet/test:__subpackages__",
java/client/test/org/openqa/selenium/environment/webserver/NettyAppServer.java
@@ -158,6 +158,6 @@ public static void main(String[] args) {
158
NettyAppServer server = new NettyAppServer();
159
server.start();
160
161
- System.out.println(server.whereIs("/"));
+ System.out.printf("Server started. Root URL: %s%n", server.whereIs("/"));
162
}
163
0 commit comments