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>
24 lines
304 B
Markdown
24 lines
304 B
Markdown
---
|
|
sidebar_label: Page.mainFrame
|
|
---
|
|
|
|
# Page.mainFrame() method
|
|
|
|
The page's main frame.
|
|
|
|
#### Signature:
|
|
|
|
```typescript
|
|
class Page {
|
|
abstract mainFrame(): Frame;
|
|
}
|
|
```
|
|
|
|
**Returns:**
|
|
|
|
[Frame](./puppeteer.frame.md)
|
|
|
|
## Remarks
|
|
|
|
Page is guaranteed to have a main frame which persists during navigations.
|