Packages

c

zinteract.builder

RemoteBuilder

sealed case class RemoteBuilder[Options, Driver](path: Option[String], blueprint: Blueprint[Options], pathProperty: String, createOptions: () => Options, createDriver: (Options) => Driver) extends Builder[Options, Driver] with Product with Serializable

A general Builder for Remote Web Driver

Linear Supertypes
Serializable, Product, Equals, Builder[Options, Driver], AnyRef, Any
Ordering
  1. Alphabetic
  2. By Inheritance
Inherited
  1. RemoteBuilder
  2. Serializable
  3. Product
  4. Equals
  5. Builder
  6. AnyRef
  7. Any
  1. Hide All
  2. Show All
Visibility
  1. Public
  2. Protected

Instance Constructors

  1. new RemoteBuilder(path: Option[String], blueprint: Blueprint[Options], pathProperty: String, createOptions: () => Options, createDriver: (Options) => Driver)

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. def >(path: String): RemoteBuilder[Options, Driver]

    Operator alias for at.

  5. def >>(blueprint: Blueprint[Options]): RemoteBuilder[Options, Driver]

    Operator alias for >>.

  6. final def asInstanceOf[T0]: T0
    Definition Classes
    Any
  7. def at(path: String): RemoteBuilder[Options, Driver]

    Returns a builder using the new path.

  8. val blueprint: Blueprint[Options]
  9. def buildDriver: Task[Driver]

    Builds a Driver by applying the blueprint.

    Builds a Driver by applying the blueprint.

    Definition Classes
    RemoteBuilderBuilder
  10. def buildLayer: ZLayer[Any, Throwable, WebDriver]

    Build the ZLayer from the builder description.

    Build the ZLayer from the builder description.

    Definition Classes
    Builder
  11. def buildOptions: Task[Options]

    Builds Options by applying the blueprint.

    Builds Options by applying the blueprint.

    Definition Classes
    RemoteBuilderBuilder
  12. def clone(): AnyRef
    Attributes
    protected[lang]
    Definition Classes
    AnyRef
    Annotations
    @throws(classOf[java.lang.CloneNotSupportedException]) @native()
  13. val createDriver: (Options) => Driver
  14. val createOptions: () => Options
  15. final def eq(arg0: AnyRef): Boolean
    Definition Classes
    AnyRef
  16. def finalize(): Unit
    Attributes
    protected[lang]
    Definition Classes
    AnyRef
    Annotations
    @throws(classOf[java.lang.Throwable])
  17. final def getClass(): Class[_ <: AnyRef]
    Definition Classes
    AnyRef → Any
    Annotations
    @native()
  18. final def isInstanceOf[T0]: Boolean
    Definition Classes
    Any
  19. final def ne(arg0: AnyRef): Boolean
    Definition Classes
    AnyRef
  20. final def notify(): Unit
    Definition Classes
    AnyRef
    Annotations
    @native()
  21. final def notifyAll(): Unit
    Definition Classes
    AnyRef
    Annotations
    @native()
  22. val path: Option[String]
  23. val pathProperty: String
  24. def productElementNames: Iterator[String]
    Definition Classes
    Product
  25. final def synchronized[T0](arg0: => T0): T0
    Definition Classes
    AnyRef
  26. def using(blueprint: Blueprint[Options]): RemoteBuilder[Options, Driver]

    Returns a builder using the new blueprint.

  27. final def wait(): Unit
    Definition Classes
    AnyRef
    Annotations
    @throws(classOf[java.lang.InterruptedException])
  28. final def wait(arg0: Long, arg1: Int): Unit
    Definition Classes
    AnyRef
    Annotations
    @throws(classOf[java.lang.InterruptedException])
  29. final def wait(arg0: Long): Unit
    Definition Classes
    AnyRef
    Annotations
    @throws(classOf[java.lang.InterruptedException]) @native()

Inherited from Serializable

Inherited from Product

Inherited from Equals

Inherited from Builder[Options, Driver]

Inherited from AnyRef

Inherited from Any

Ungrouped