MCPcopy Create free account
hub / github.com/SeleniumHQ/selenium / post

Method post

java/src/org/openqa/selenium/remote/http/Route.java:110–115  ·  view source on GitHub ↗
(String template)

Source from the content-addressed store, hash-verified

108 }
109
110 public static TemplatizedRouteConfig post(String template) {
111 UrlTemplate urlTemplate = new UrlTemplate(Require.nonNull("URL template", template));
112
113 return new TemplatizedRouteConfig(
114 new MatchesHttpMethod(POST).and(new MatchesTemplate(urlTemplate)), urlTemplate);
115 }
116
117 public static TemplatizedRouteConfig options(String template) {
118 UrlTemplate urlTemplate = new UrlTemplate(Require.nonNull("URL template", template));

Calls 2

nonNullMethod · 0.95
andMethod · 0.80