EvaluateResult

data class EvaluateResult(val value: Any?, val type: String)

The result of a Runtime.evaluate call.

Constructors

Link copied to clipboard
constructor(value: Any?, type: String)

Properties

Link copied to clipboard

The CDP-reported runtime type, e.g. "string", "number", "undefined".

Link copied to clipboard
val value: Any?

The evaluated value, or null for undefined/null.