Skip to main content
Module

x/puppeteer/mod.ts>Frame#evaluateHandle

A port of puppeteer running on Deno
Latest
method Frame.prototype.evaluateHandle
Re-export
import { Frame } from "https://deno.land/x/puppeteer@16.2.0/mod.ts";

Behaves identically to Page.evaluateHandle except it's run within the context of this frame.

Type Parameters

Params extends unknown[]
optional
Func extends EvaluateFunc<Params> = EvaluateFunc<Params>

Parameters

pageFunction: Func | string
...args: Params

Returns

Promise<HandleFor<Awaited<ReturnType<Func>>>>