2022-08-06 14:49:20 +00:00
|
|
|
---
|
|
|
|
sidebar_label: WaitTimeoutOptions.timeout
|
|
|
|
---
|
|
|
|
|
|
|
|
# WaitTimeoutOptions.timeout property
|
|
|
|
|
2022-08-16 11:58:16 +00:00
|
|
|
Maximum wait time in milliseconds. Pass 0 to disable the timeout.
|
|
|
|
|
|
|
|
The default value can be changed by using the [Page.setDefaultTimeout()](./puppeteer.page.setdefaulttimeout.md) method.
|
2022-08-06 14:49:20 +00:00
|
|
|
|
2022-10-24 14:23:24 +00:00
|
|
|
**Signature:**
|
2022-08-06 14:49:20 +00:00
|
|
|
|
|
|
|
```typescript
|
|
|
|
interface WaitTimeoutOptions {
|
|
|
|
timeout?: number;
|
|
|
|
}
|
|
|
|
```
|