Skip to content

Latest commit

 

History

History
32 lines (24 loc) · 803 Bytes

puppeteer.frame.evaluatehandle.md

File metadata and controls

32 lines (24 loc) · 803 Bytes
sidebar_label
Frame.evaluateHandle

Frame.evaluateHandle() method

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

Signature:

class Frame {
  evaluateHandle<
    Params extends unknown[],
    Func extends EvaluateFunc<Params> = EvaluateFunc<Params>
  >(
    pageFunction: Func | string,
    ...args: Params
  ): Promise<HandleFor<Awaited<ReturnType<Func>>>>;
}

Parameters

Parameter Type Description
pageFunction Func | string
args Params

Returns:

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