org.scalatestplus.selenium.WebBrowser
The domain to which this cookie is visible.
The domain to which this cookie is visible.
This invokes getDomain
on the underlying Cookie
.
the domain of this cookie
Returns the result of invoking equals
on the underlying Cookie
, passing
in the specified other
object.
Returns the result of invoking equals
on the underlying Cookie
, passing
in the specified other
object.
Two Selenium Cookie
s are considered equal if their name and values are equal.
the object with which to compare for equality
true if the passed object is equal to this one
The expire date of this cookie.
The expire date of this cookie.
This invokes getExpiry
on the underlying Cookie
.
the expire date of this cookie
Returns the result of invoking hashCode
on the underlying Cookie
.
Returns the result of invoking hashCode
on the underlying Cookie
.
a hash code for this object
The name of this cookie.
The name of this cookie.
This invokes getName
on the underlying Cookie
.
the name of this cookie
The path of this cookie.
The path of this cookie.
This invokes getPath
on the underlying Cookie
.
the path of this cookie
Indicates whether the cookie requires a secure connection.
Indicates whether the cookie requires a secure connection.
This invokes isSecure
on the underlying Cookie
.
true if this cookie requires a secure connection.
Returns the result of invoking toString
on the underlying Cookie
.
Returns the result of invoking toString
on the underlying Cookie
.
a string representation of this object
The value of this cookie.
The value of this cookie.
This invokes getValue
on the underlying Cookie
.
the value of this cookie
Wrapper class for a Selenium
Cookie
.This class provides idiomatic Scala access to the services of an underlying
Cookie
. You can access the wrappedCookie
via theunderlying
method.