chrome-devtools-kotlin / org.hildan.chrome.devtools.domains.page.events / PageEvent / FrameScheduledNavigationEvent

FrameScheduledNavigationEvent

data class FrameScheduledNavigationEvent : PageEvent
Deprecated: Deprecated in the Chrome DevTools protocol

Fired when frame schedules a potential navigation.

Official doc

Constructors

<init>

Fired when frame schedules a potential navigation.

FrameScheduledNavigationEvent(frameId: FrameId, delay: Double, reason: ClientNavigationReason, url: String)

Properties

delay

Delay (in seconds) until the navigation is scheduled to begin. The navigation is not guaranteed to start.

val delay: Double

frameId

Id of the frame that has scheduled a navigation.

val frameId: FrameId

reason

The reason for the navigation.

val reason: ClientNavigationReason

url

The destination URL for the scheduled navigation.

val url: String