NavigateResponse

@Serializable
data class NavigateResponse(val frameId: FrameId, val loaderId: LoaderId? = null, val errorText: String? = null)(source)

Response type for the PageDomain.navigate command.

Constructors

Link copied to clipboard
constructor(frameId: FrameId, loaderId: LoaderId? = null, errorText: String? = null)

Properties

Link copied to clipboard
val errorText: String? = null

User friendly error message, present if and only if navigation has failed.

Link copied to clipboard

Frame id that has navigated (or failed to navigate)

Link copied to clipboard
val loaderId: LoaderId? = null

Loader identifier. This is omitted in case of same-document navigation, as the previously committed loaderId would not change.