Class

org.scalatest.selenium.WebBrowser

WrappedCookie

Related Doc: package WebBrowser

Permalink

final class WrappedCookie extends AnyRef

Wrapper class for a Selenium Cookie.

This class provides idiomatic Scala access to the services of an underlying Cookie. You can access the wrapped Cookie via the underlying method.

Source
WebBrowser.scala
Linear Supertypes
AnyRef, Any
Ordering
  1. Alphabetic
  2. By inheritance
Inherited
  1. WrappedCookie
  2. AnyRef
  3. Any
  1. Hide All
  2. Show all
Visibility
  1. Public
  2. All

Instance Constructors

  1. new WrappedCookie(underlying: Cookie)

    Permalink

Value Members

  1. final def !=(arg0: Any): Boolean

    Permalink
    Definition Classes
    AnyRef → Any
  2. final def ##(): Int

    Permalink
    Definition Classes
    AnyRef → Any
  3. final def ==(arg0: Any): Boolean

    Permalink
    Definition Classes
    AnyRef → Any
  4. final def asInstanceOf[T0]: T0

    Permalink
    Definition Classes
    Any
  5. def clone(): AnyRef

    Permalink
    Attributes
    protected[java.lang]
    Definition Classes
    AnyRef
    Annotations
    @throws( ... )
  6. def domain: String

    Permalink

    The domain to which this cookie is visible.

    The domain to which this cookie is visible.

    This invokes getDomain on the underlying Cookie.

    returns

    the domain of this cookie

  7. final def eq(arg0: AnyRef): Boolean

    Permalink
    Definition Classes
    AnyRef
  8. def equals(other: Any): Boolean

    Permalink

    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 Cookies are considered equal if their name and values are equal.

    other

    the object with which to compare for equality

    returns

    true if the passed object is equal to this one

    Definition Classes
    WrappedCookie → AnyRef → Any
  9. def expiry: Option[Date]

    Permalink

    The expire date of this cookie.

    The expire date of this cookie.

    This invokes getExpiry on the underlying Cookie.

    returns

    the expire date of this cookie

  10. def finalize(): Unit

    Permalink
    Attributes
    protected[java.lang]
    Definition Classes
    AnyRef
    Annotations
    @throws( classOf[java.lang.Throwable] )
  11. final def getClass(): Class[_]

    Permalink
    Definition Classes
    AnyRef → Any
  12. def hashCode(): Int

    Permalink

    Returns the result of invoking hashCode on the underlying Cookie.

    Returns the result of invoking hashCode on the underlying Cookie.

    returns

    a hash code for this object

    Definition Classes
    WrappedCookie → AnyRef → Any
  13. final def isInstanceOf[T0]: Boolean

    Permalink
    Definition Classes
    Any
  14. def name: String

    Permalink

    The name of this cookie.

    The name of this cookie.

    This invokes getName on the underlying Cookie.

    returns

    the name of this cookie

  15. final def ne(arg0: AnyRef): Boolean

    Permalink
    Definition Classes
    AnyRef
  16. final def notify(): Unit

    Permalink
    Definition Classes
    AnyRef
  17. final def notifyAll(): Unit

    Permalink
    Definition Classes
    AnyRef
  18. def path: String

    Permalink

    The path of this cookie.

    The path of this cookie.

    This invokes getPath on the underlying Cookie.

    returns

    the path of this cookie

  19. def secure: Boolean

    Permalink

    Indicates whether the cookie requires a secure connection.

    Indicates whether the cookie requires a secure connection.

    This invokes isSecure on the underlying Cookie.

    returns

    true if this cookie requires a secure connection.

  20. final def synchronized[T0](arg0: ⇒ T0): T0

    Permalink
    Definition Classes
    AnyRef
  21. def toString(): String

    Permalink

    Returns the result of invoking toString on the underlying Cookie.

    Returns the result of invoking toString on the underlying Cookie.

    returns

    a string representation of this object

    Definition Classes
    WrappedCookie → AnyRef → Any
  22. val underlying: Cookie

    Permalink
  23. def value: String

    Permalink

    The value of this cookie.

    The value of this cookie.

    This invokes getValue on the underlying Cookie.

    returns

    the value of this cookie

  24. final def wait(): Unit

    Permalink
    Definition Classes
    AnyRef
    Annotations
    @throws( ... )
  25. final def wait(arg0: Long, arg1: Int): Unit

    Permalink
    Definition Classes
    AnyRef
    Annotations
    @throws( ... )
  26. final def wait(arg0: Long): Unit

    Permalink
    Definition Classes
    AnyRef
    Annotations
    @throws( ... )

Inherited from AnyRef

Inherited from Any

Ungrouped