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

ReloadRequest

data class ReloadRequest

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

Constructors

<init>

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

ReloadRequest(ignoreCache: Boolean? = null, scriptToEvaluateOnLoad: String? = null)

Properties

ignoreCache

If true, browser cache is ignored (as if the user pressed Shift+refresh).

val ignoreCache: Boolean?

scriptToEvaluateOnLoad

If set, the script will be injected into all frames of the inspected page after reload. Argument will be ignored if reloading dataURL origin.

val scriptToEvaluateOnLoad: String?