2022-07-05 13:41:43 +00:00
|
|
|
---
|
|
|
|
sidebar_label: TimeoutError
|
|
|
|
---
|
|
|
|
|
|
|
|
# TimeoutError class
|
|
|
|
|
|
|
|
TimeoutError is emitted whenever certain operations are terminated due to timeout.
|
|
|
|
|
2022-10-24 07:07:05 +00:00
|
|
|
#### Signature:
|
2022-07-05 13:41:43 +00:00
|
|
|
|
|
|
|
```typescript
|
2024-02-02 12:15:20 +00:00
|
|
|
export declare class TimeoutError extends PuppeteerError
|
2022-07-05 13:41:43 +00:00
|
|
|
```
|
|
|
|
|
2024-02-02 12:15:20 +00:00
|
|
|
**Extends:** [PuppeteerError](./puppeteer.puppeteererror.md)
|
2022-07-05 13:41:43 +00:00
|
|
|
|
|
|
|
## Remarks
|
|
|
|
|
2022-07-06 07:05:37 +00:00
|
|
|
Example operations are [page.waitForSelector](./puppeteer.page.waitforselector.md) or [puppeteer.launch](./puppeteer.puppeteernode.launch.md).
|