--- sidebar_label: Frame.$$ --- # Frame.$$() method This runs `document.querySelectorAll` in the frame and returns the result. **Signature:** ```typescript class Frame { $$( selector: Selector ): Promise[]>; } ``` ## Parameters | Parameter | Type | Description | | --------- | -------- | ------------------------ | | selector | Selector | a selector to search for | **Returns:** Promise<[ElementHandle](./puppeteer.elementhandle.md)<HTMLElementTagNameMap\[Selector\]>\[\]> An array of element handles pointing to the found frame elements.