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

26 lines
704 B
Markdown
Raw Normal View History

2022-07-05 13:41:43 +00:00
---
sidebar_label: ElementHandle.contentFrame
---
# ElementHandle.contentFrame() method
Resolves the frame associated with the element, if any. Always exists for HTMLIFrameElements.
2022-07-05 13:41:43 +00:00
#### Signature:
2022-07-05 13:41:43 +00:00
```typescript
class ElementHandle {
abstract contentFrame(this: ElementHandle<HTMLIFrameElement>): Promise<Frame>;
2022-07-05 13:41:43 +00:00
}
```
## Parameters
| Parameter | Type | Description |
| --------- | ---------------------------------------------------------------------- | ----------- |
| this | [ElementHandle](./puppeteer.elementhandle.md)&lt;HTMLIFrameElement&gt; | |
2022-07-05 13:41:43 +00:00
**Returns:**
Promise&lt;[Frame](./puppeteer.frame.md)&gt;