Skip to content

Latest commit

 

History

History
63 lines (40 loc) · 774 Bytes

puppeteer.frame.evaluate.md

File metadata and controls

63 lines (40 loc) · 774 Bytes
sidebar_label
Frame.evaluate

Frame.evaluate() method

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

Signature:

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

Parameters

Parameter

Type

Description

pageFunction

Func | string

args

Params

**Returns:**

Promise<Awaited<ReturnType<Func>>>