puppeteer.elementhandle.__
Home > puppeteer > ElementHandle > $$
#
ElementHandle.$$() methodRuns element.querySelectorAll
within the page. If no elements match the selector, the return value resolves to []
.
$$<T extends Element = Element>(selector: string): Promise<Array<ElementHandle<T>>>;
#
ParametersParameter | Type | Description |
---|---|---|
selector | string |
Promise<Array<ElementHandle<T>>>