Skip to content

Latest commit

 

History

History
32 lines (24 loc) · 721 Bytes

puppeteer.frame.evaluate.md

File metadata and controls

32 lines (24 loc) · 721 Bytes
sidebar_label
Frame.evaluate

Frame.evaluate() method

Behaves identically to Page.evaluate() except it's run within the 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>>>