puppeteer/website/versioned_docs/version-19.4.0/api/puppeteer.framewaitforfunctionoptions.timeout.md

16 lines
427 B
Markdown
Raw Normal View History

---
sidebar_label: FrameWaitForFunctionOptions.timeout
---
# FrameWaitForFunctionOptions.timeout property
Maximum time to wait in milliseconds. Defaults to `30000` (30 seconds). Pass `0` to disable the timeout. Puppeteer's default timeout can be changed using [Page.setDefaultTimeout()](./puppeteer.page.setdefaulttimeout.md).
2022-10-24 14:31:12 +00:00
#### Signature:
```typescript
interface FrameWaitForFunctionOptions {
timeout?: number;
}
```