2022-07-05 13:41:43 +00:00
|
|
|
---
|
|
|
|
sidebar_label: WaitForSelectorOptions.timeout
|
|
|
|
---
|
|
|
|
|
|
|
|
# WaitForSelectorOptions.timeout property
|
|
|
|
|
2022-08-10 21:34:29 +00:00
|
|
|
Maximum time to wait in milliseconds. Pass `0` to disable timeout.
|
|
|
|
|
|
|
|
The default value can be changed by using [Page.setDefaultTimeout()](./puppeteer.page.setdefaulttimeout.md)
|
|
|
|
|
2022-10-24 07:07:05 +00:00
|
|
|
#### Signature:
|
2022-07-05 13:41:43 +00:00
|
|
|
|
|
|
|
```typescript
|
|
|
|
interface WaitForSelectorOptions {
|
|
|
|
timeout?: number;
|
|
|
|
}
|
|
|
|
```
|
2022-10-24 07:07:05 +00:00
|
|
|
|
|
|
|
#### Default value:
|
|
|
|
|
|
|
|
`30000` (30 seconds)
|