FrameRequestedNavigationParameter

@Serializable
data class FrameRequestedNavigationParameter(val frameId: String, val reason: Page.ClientNavigationReason, val url: String, val disposition: Page.ClientNavigationDisposition)

Fired when a renderer-initiated navigation is requested. Navigation may still be cancelled after the event is issued.

Constructors

Link copied to clipboard
constructor(frameId: String, reason: Page.ClientNavigationReason, url: String, disposition: Page.ClientNavigationDisposition)

Properties

Link copied to clipboard

The disposition for the navigation.

Link copied to clipboard

Id of the frame that is being navigated.

Link copied to clipboard

The reason for the navigation.

Link copied to clipboard
val url: String

The destination URL for the requested navigation.