puppeteer/docs/api/puppeteer.frame.parentframe.md

20 lines
283 B
Markdown
Raw Normal View History

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