Skip to content

Latest commit

 

History

History
24 lines (14 loc) · 687 Bytes

puppeteer.elementhandle.__.md

File metadata and controls

24 lines (14 loc) · 687 Bytes

Home > puppeteer > ElementHandle > $$

ElementHandle.$$() method

Runs element.querySelectorAll within the page. If no elements match the selector, the return value resolves to [].

Signature:

$$(selector: string): Promise<ElementHandle[]>;

Parameters

Parameter Type Description
selector string

Returns:

Promise<ElementHandle[]>