puppeteer/docs/api/puppeteer.elementhandle.contentframe.md

20 lines
353 B
Markdown
Raw Normal View History

2022-07-05 13:41:43 +00:00
---
sidebar_label: ElementHandle.contentFrame
---
# ElementHandle.contentFrame() method
Resolves to the content frame for element handles referencing iframe nodes, or null otherwise
#### Signature:
2022-07-05 13:41:43 +00:00
```typescript
class ElementHandle {
contentFrame(): Promise<Frame | null>;
}
```
**Returns:**
Promise&lt;[Frame](./puppeteer.frame.md) \| null&gt;