Skip to content

Latest commit

 

History

History
63 lines (40 loc) · 860 Bytes

puppeteer.frame.evaluatehandle.md

File metadata and controls

63 lines (40 loc) · 860 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>>>>