73ca94fe66
Co-authored-by: release-please[bot] <55107282+release-please[bot]@users.noreply.github.com>
20 lines
367 B
Markdown
20 lines
367 B
Markdown
---
|
|
sidebar_label: JSHandle.asElement
|
|
---
|
|
|
|
# JSHandle.asElement() method
|
|
|
|
#### Signature:
|
|
|
|
```typescript
|
|
class JSHandle {
|
|
asElement(): ElementHandle<Node> | null;
|
|
}
|
|
```
|
|
|
|
**Returns:**
|
|
|
|
[ElementHandle](./puppeteer.elementhandle.md)<Node> \| null
|
|
|
|
Either `null` or the handle itself if the handle is an instance of [ElementHandle](./puppeteer.elementhandle.md).
|