mirror of
https://github.com/puppeteer/puppeteer
synced 2024-06-14 14:02:48 +00:00
24 lines
1.3 KiB
Markdown
24 lines
1.3 KiB
Markdown
|
<!-- Do not edit this file. It is automatically generated by API Documenter. -->
|
||
|
|
||
|
[Home](./index.md) > [puppeteer](./puppeteer.md) > [Protocol](./puppeteer.protocol.md) > [Page](./puppeteer.protocol.page.md) > [FrameScheduledNavigationEvent](./puppeteer.protocol.page.frameschedulednavigationevent.md)
|
||
|
|
||
|
## Protocol.Page.FrameScheduledNavigationEvent interface
|
||
|
|
||
|
Fired when frame schedules a potential navigation.
|
||
|
|
||
|
<b>Signature:</b>
|
||
|
|
||
|
```typescript
|
||
|
export interface FrameScheduledNavigationEvent
|
||
|
```
|
||
|
|
||
|
## Properties
|
||
|
|
||
|
| Property | Type | Description |
|
||
|
| --- | --- | --- |
|
||
|
| [delay](./puppeteer.protocol.page.frameschedulednavigationevent.delay.md) | number | Delay (in seconds) until the navigation is scheduled to begin. The navigation is not guaranteed to start. |
|
||
|
| [frameId](./puppeteer.protocol.page.frameschedulednavigationevent.frameid.md) | [FrameId](./puppeteer.protocol.page.frameid.md) | Id of the frame that has scheduled a navigation. |
|
||
|
| [reason](./puppeteer.protocol.page.frameschedulednavigationevent.reason.md) | [ClientNavigationReason](./puppeteer.protocol.page.clientnavigationreason.md) | The reason for the navigation. |
|
||
|
| [url](./puppeteer.protocol.page.frameschedulednavigationevent.url.md) | string | The destination URL for the scheduled navigation. |
|
||
|
|