org.scalatest.selenium.WebBrowser

WrappedCookie

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.

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

Instance Constructors

  1. new WrappedCookie (underlying: Cookie)

Value Members

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

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

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

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

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

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

    Attributes
    final
    Definition Classes
    Any
  7. def clone (): AnyRef

    Attributes
    protected[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. def eq (arg0: AnyRef): Boolean

    Attributes
    final
    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[lang]
    Definition Classes
    AnyRef
    Annotations
    @throws()
  13. def getClass (): java.lang.Class[_]

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

    Attributes
    final
    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. def ne (arg0: AnyRef): Boolean

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

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

    Attributes
    final
    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. def synchronized [T0] (arg0: ⇒ T0): T0

    Attributes
    final
    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. def wait (): Unit

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

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

    Attributes
    final
    Definition Classes
    AnyRef
    Annotations
    @throws()

Inherited from AnyRef

Inherited from Any