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

47 lines
640 B
Markdown
Raw Permalink 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
<table><thead><tr><th>
Parameter
</th><th>
Type
</th><th>
Description
</th></tr></thead>
<tbody><tr><td>
this
</td><td>
[ElementHandle](./puppeteer.elementhandle.md)&lt;HTMLIFrameElement&gt;
</td><td>
</td></tr>
</tbody></table>
2022-07-05 13:41:43 +00:00
**Returns:**
Promise&lt;[Frame](./puppeteer.frame.md)&gt;