--- 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<Array<[ElementHandle](./puppeteer.elementhandle.md)<[NodeFor](./puppeteer.nodefor.md)<Selector>>>> An array of element handles pointing to the found frame elements.