2022-08-06 14:49:20 +00:00
|
|
|
---
|
|
|
|
sidebar_label: Frame.parentFrame
|
|
|
|
---
|
|
|
|
|
|
|
|
# Frame.parentFrame() method
|
|
|
|
|
|
|
|
**Signature:**
|
|
|
|
|
|
|
|
```typescript
|
|
|
|
class Frame {
|
|
|
|
parentFrame(): Frame | null;
|
|
|
|
}
|
|
|
|
```
|
|
|
|
|
|
|
|
**Returns:**
|
|
|
|
|
|
|
|
[Frame](./puppeteer.frame.md) \| null
|
|
|
|
|
2022-08-16 11:58:16 +00:00
|
|
|
The parent frame, if any. Detached and main frames return `null`.
|