Skip to main content
Module

x/puppeteer_plus/mod.ts>Protocol.Runtime.WebDriverValue

Deno port of puppeteer base on latest TypeScript source.
Go to Latest
interface Protocol.Runtime.WebDriverValue
import { type Protocol } from "https://deno.land/x/puppeteer_plus@0.14.0/mod.ts";
const { WebDriverValue } = Protocol.Runtime;

Represents the value serialiazed by the WebDriver BiDi specification https://w3c.github.io/webdriver-bidi.

Properties

type: (
| "undefined"
| "null"
| "string"
| "number"
| "boolean"
| "bigint"
| "regexp"
| "date"
| "symbol"
| "array"
| "object"
| "function"
| "map"
| "set"
| "weakmap"
| "weakset"
| "error"
| "proxy"
| "promise"
| "typedarray"
| "arraybuffer"
| "node"
| "window"
)

(WebDriverValueType enum)

optional
value: any
optional
objectId: string