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: Any): Boolean

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

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

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

    Definition Classes
    Any
  5. def clone(): AnyRef

    Attributes
    protected[java.lang]
    Definition Classes
    AnyRef
    Annotations
    @throws( ... )
  6. 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

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

    Definition Classes
    AnyRef
  8. 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
  9. 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

  10. def finalize(): Unit

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

    Definition Classes
    AnyRef → Any
  12. 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
  13. final def isInstanceOf[T0]: Boolean

    Definition Classes
    Any
  14. 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

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

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

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

    Definition Classes
    AnyRef
  18. 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

  19. 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.

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

    Definition Classes
    AnyRef
  21. 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
  22. val underlying: Cookie

  23. 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

  24. final def wait(): Unit

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

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

    Definition Classes
    AnyRef
    Annotations
    @throws( ... )

Inherited from AnyRef

Inherited from Any

Ungrouped