ChromeVersion

@Serializable
data class ChromeVersion(val browser: String, val protocolVersion: String, val userAgent: String, val v8Version: String? = null, val webKitVersion: String, val webSocketDebuggerUrl: String)(source)

Browser version information retrieved via the debugger API.

Constructors

Link copied to clipboard
constructor(browser: String, protocolVersion: String, userAgent: String, v8Version: String? = null, webKitVersion: String, webSocketDebuggerUrl: String)

Properties

Link copied to clipboard
@SerialName(value = "Browser")
val browser: String
Link copied to clipboard
@SerialName(value = "Protocol-Version")
val protocolVersion: String
Link copied to clipboard
@SerialName(value = "User-Agent")
val userAgent: String
Link copied to clipboard
@SerialName(value = "V8-Version")
val v8Version: String? = null
Link copied to clipboard
@SerialName(value = "WebKit-Version")
val webKitVersion: String
Link copied to clipboard
@SerialName(value = "webSocketDebuggerUrl")
val webSocketDebuggerUrl: String

The web socket URL to use to attach to the browser target. It is sort of the "root" target that can then be used to connect to pages and other types of targets.