mirror of
https://github.com/puppeteer/puppeteer
synced 2024-06-14 14:02:48 +00:00
d57b1044f2
Co-authored-by: release-please[bot] <55107282+release-please[bot]@users.noreply.github.com>
26 lines
704 B
Markdown
26 lines
704 B
Markdown
---
|
|
sidebar_label: ElementHandle.contentFrame
|
|
---
|
|
|
|
# ElementHandle.contentFrame() method
|
|
|
|
Resolves the frame associated with the element, if any. Always exists for HTMLIFrameElements.
|
|
|
|
#### Signature:
|
|
|
|
```typescript
|
|
class ElementHandle {
|
|
abstract contentFrame(this: ElementHandle<HTMLIFrameElement>): Promise<Frame>;
|
|
}
|
|
```
|
|
|
|
## Parameters
|
|
|
|
| Parameter | Type | Description |
|
|
| --------- | ---------------------------------------------------------------------- | ----------- |
|
|
| this | [ElementHandle](./puppeteer.elementhandle.md)<HTMLIFrameElement> | |
|
|
|
|
**Returns:**
|
|
|
|
Promise<[Frame](./puppeteer.frame.md)>
|