Skip to content

Latest commit

 

History

History
34 lines (27 loc) · 728 Bytes

puppeteer.elementhandle.__eval_1.md

File metadata and controls

34 lines (27 loc) · 728 Bytes
sidebar_label
ElementHandle.$$eval_1

ElementHandle.$$eval() method

Signature:

class ElementHandle {
  $$eval<
    Params extends unknown[],
    Func extends EvaluateFunc<[Element[], ...Params]> = EvaluateFunc<
      [Element[], ...Params]
    >
  >(
    selector: string,
    pageFunction: Func | string,
    ...args: Params
  ): Promise<Awaited<ReturnType<Func>>>;
}

Parameters

Parameter Type Description
selector string
pageFunction Func | string
args Params

Returns:

Promise<Awaited<ReturnType<Func>>>