mirror of
https://github.com/puppeteer/puppeteer
synced 2024-06-14 14:02:48 +00:00
24 lines
366 B
Markdown
24 lines
366 B
Markdown
|
---
|
||
|
sidebar_label: Page.$_1
|
||
|
---
|
||
|
|
||
|
# Page.$() method
|
||
|
|
||
|
**Signature:**
|
||
|
|
||
|
```typescript
|
||
|
class Page {
|
||
|
$(selector: string): Promise<ElementHandle | null>;
|
||
|
}
|
||
|
```
|
||
|
|
||
|
## Parameters
|
||
|
|
||
|
| Parameter | Type | Description |
|
||
|
| --------- | ------ | ----------- |
|
||
|
| selector | string | |
|
||
|
|
||
|
**Returns:**
|
||
|
|
||
|
Promise<[ElementHandle](./puppeteer.elementhandle.md) \| null>
|