org.scalatest.selenium.WebBrowser

WrappedCookie

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
Learn more about member selection
Visibility
  1. Public
  2. All

Instance Constructors

  1. new WrappedCookie(underlying: Cookie)

Value Members

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

    Definition Classes
    AnyRef
  2. final def !=(arg0: Any): Boolean

    Definition Classes
    Any
  3. final def ##(): Int

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

    Definition Classes
    AnyRef
  5. final def ==(arg0: Any): Boolean

    Definition Classes
    Any
  6. final def asInstanceOf[T0]: T0

    Definition Classes
    Any
  7. def clone(): AnyRef

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

    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

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

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

    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
  11. def expiry: Option[Date]

    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

  12. def finalize(): Unit

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

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

    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
  15. final def isInstanceOf[T0]: Boolean

    Definition Classes
    Any
  16. def name: String

    The name of this cookie.

    The name of this cookie.

    This invokes getName on the underlying Cookie.

    returns

    the name of this cookie

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

    Definition Classes
    AnyRef
  18. final def notify(): Unit

    Definition Classes
    AnyRef
  19. final def notifyAll(): Unit

    Definition Classes
    AnyRef
  20. def path: String

    The path of this cookie.

    The path of this cookie.

    This invokes getPath on the underlying Cookie.

    returns

    the path of this cookie

  21. def secure: Boolean

    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.

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

    Definition Classes
    AnyRef
  23. def toString(): String

    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
  24. val underlying: Cookie

  25. def value: String

    The value of this cookie.

    The value of this cookie.

    This invokes getValue on the underlying Cookie.

    returns

    the value of this cookie

  26. final def wait(): Unit

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

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

    Definition Classes
    AnyRef
    Annotations
    @throws()

Inherited from AnyRef

Inherited from Any

Ungrouped