2022-07-05 13:41:43 +00:00
|
|
|
---
|
|
|
|
sidebar_label: Frame.parentFrame
|
|
|
|
---
|
|
|
|
|
|
|
|
# Frame.parentFrame() method
|
|
|
|
|
|
|
|
**Signature:**
|
|
|
|
|
|
|
|
```typescript
|
|
|
|
class Frame {
|
|
|
|
parentFrame(): Frame | null;
|
|
|
|
}
|
|
|
|
```
|
|
|
|
|
|
|
|
**Returns:**
|
|
|
|
|
|
|
|
[Frame](./puppeteer.frame.md) \| null
|
|
|
|
|
2022-08-11 05:55:02 +00:00
|
|
|
The parent frame, if any. Detached and main frames return `null`.
|