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