693 B
693 B
Home > puppeteer > ElementHandle > $
ElementHandle.$() method
Runs element.querySelector
within the page. If no element matches the selector, the return value resolves to null
.
Signature:
$<T extends Element = Element>(selector: string): Promise<ElementHandle<T> | null>;
Parameters
Parameter | Type | Description |
---|---|---|
selector | string |
Returns:
Promise<ElementHandle<T> | null>