Page

data class Page(val status: Status, navigate: Navigate, getURL: GetURL, val handle: UUID, val url: String, val contents: String, val previous: Page? = null, val next: Page? = null, behaviour: PageBehaviour = PageBehaviour.NoOp)(source)

Constructors

Link copied to clipboard
constructor(status: Status, navigate: Navigate, getURL: GetURL, handle: UUID, url: String, contents: String, previous: Page? = null, next: Page? = null, behaviour: PageBehaviour = PageBehaviour.NoOp)

Properties

Link copied to clipboard
Link copied to clipboard
val document: Document

The live document for this page: mutations are reflected in subsequent element lookups.

Link copied to clipboard
Link copied to clipboard
val next: Page?
Link copied to clipboard
Link copied to clipboard
Link copied to clipboard
Link copied to clipboard
val url: String

Functions

Link copied to clipboard
fun findElement(by: By): WebElement?
Link copied to clipboard
fun findElements(by: By): List<WebElement>
Link copied to clipboard