Skip to main content
Version: 10.1.0

puppeteer.elementhandle.__

Home > puppeteer > ElementHandle > $$

ElementHandle.$$() method#

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

Signature:
$$<T extends Element = Element>(selector: string): Promise<Array<ElementHandle<T>>>;

Parameters#

ParameterTypeDescription
selectorstring
Returns:

Promise<Array<ElementHandle<T>>>