MCPcopy
hub / github.com/SeleniumHQ/selenium / Cookie

Method Cookie

java/src/org/openqa/selenium/Cookie.java:52–54  ·  view source on GitHub ↗

Creates an insecure non-httpOnly cookie with no domain specified. @param name The name of the cookie; may not be null or an empty string. @param value The cookie value; may not be null. @param path The path the cookie is visible to. If left blank or set to null, will be set to "/". @param expir

(String name, String value, @Nullable String path, @Nullable Date expiry)

Source from the content-addressed store, hash-verified

50 * @see #Cookie(String, String, String, String, Date)
51 */
52 public Cookie(String name, String value, @Nullable String path, @Nullable Date expiry) {
53 this(name, value, null, path, expiry);
54 }
55
56 /**
57 * Creates an insecure non-httpOnly cookie.

Callers

nothing calls this directly

Calls 2

stripPortMethod · 0.95
isEmptyMethod · 0.45

Tested by

no test coverage detected