TimeoutWaitingForReadyStateException

@Serializable
data class TimeoutWaitingForReadyStateException(val until: ReadyState, val timeout: Long, val lastKnownReadyState: ReadyState?) : IllegalStateException

Exception thrown when a timeout occurs while waiting for a specific ready state in the browser tab.

Constructors

Link copied to clipboard
constructor(until: ReadyState, timeout: Long, lastKnownReadyState: ReadyState?)

Properties

Link copied to clipboard
open val cause: Throwable?
Link copied to clipboard

The last known ready state before the timeout occurred, if available.

Link copied to clipboard
open val message: String?
Link copied to clipboard

The maximum time in milliseconds to wait for the ready state.

Link copied to clipboard

The expected ready state to wait for.