27 lines
877 B
Markdown
27 lines
877 B
Markdown
|
<!-- Do not edit this file. It is automatically generated by API Documenter. -->
|
||
|
|
||
|
[Home](./index.md) > [puppeteer](./puppeteer.md) > [FrameManager](./puppeteer.framemanager.md) > [waitForFrameNavigation](./puppeteer.framemanager.waitforframenavigation.md)
|
||
|
|
||
|
## FrameManager.waitForFrameNavigation() method
|
||
|
|
||
|
<b>Signature:</b>
|
||
|
|
||
|
```typescript
|
||
|
waitForFrameNavigation(frame: Frame, options?: {
|
||
|
timeout?: number;
|
||
|
waitUntil?: PuppeteerLifeCycleEvent | PuppeteerLifeCycleEvent[];
|
||
|
}): Promise<HTTPResponse | null>;
|
||
|
```
|
||
|
|
||
|
## Parameters
|
||
|
|
||
|
| Parameter | Type | Description |
|
||
|
| --- | --- | --- |
|
||
|
| frame | [Frame](./puppeteer.frame.md) | |
|
||
|
| options | { timeout?: number; waitUntil?: PuppeteerLifeCycleEvent \| PuppeteerLifeCycleEvent\[\]; } | |
|
||
|
|
||
|
<b>Returns:</b>
|
||
|
|
||
|
Promise<[HTTPResponse](./puppeteer.httpresponse.md) \| null>
|
||
|
|