--- sidebar_label: Frame.$ --- # Frame.$() method Queries the frame for an element matching the given selector. #### Signature: ```typescript class Frame { $( selector: Selector ): Promise> | null>; } ``` ## Parameters | Parameter | Type | Description | | --------- | -------- | -------------------------- | | selector | Selector | The selector to query for. | **Returns:** Promise<[ElementHandle](./puppeteer.elementhandle.md)<[NodeFor](./puppeteer.nodefor.md)<Selector>> \| null> A [element handle](./puppeteer.elementhandle.md) to the first element matching the given selector. Otherwise, `null`.