chrome-devtools-kotlin / org.hildan.chrome.devtools.domains.page / NavigateRequest

NavigateRequest

data class NavigateRequest

Request object containing input parameters for the PageDomain.navigate command.

Constructors

<init>

Request object containing input parameters for the PageDomain.navigate command.

NavigateRequest(url: String, referrer: String? = null, transitionType: TransitionType? = null, frameId: FrameId? = null, referrerPolicy: ReferrerPolicy? = null)

Properties

frameId

Frame id to navigate, if not specified navigates the top frame.

val frameId: FrameId?

referrer

Referrer URL.

val referrer: String?

referrerPolicy

Referrer-policy used for the navigation.

val referrerPolicy: ReferrerPolicy?

transitionType

Intended transition type.

val transitionType: TransitionType?

url

URL to navigate the page to.

val url: String