mirror of
https://github.com/puppeteer/puppeteer
synced 2024-06-14 14:02:48 +00:00
* docs(new): migrate ElementHandle to TSDoc Co-authored-by: Alex Rudenko <alexrudenko@chromium.org>
695 B
695 B
Home > puppeteer > ElementHandle > $
ElementHandle.$() method
The method runs element.querySelector within the page. If no element matches the selector, the return value resolves to null.
Signature:
$(selector: string): Promise<ElementHandle | null>;
Parameters
| Parameter | Type | Description |
|---|---|---|
| selector | string |
Returns:
Promise<ElementHandle | null>