2023-06-12 08:11:43 +00:00
|
|
|
---
|
|
|
|
sidebar_label: Locator.setTimeout
|
|
|
|
---
|
|
|
|
|
|
|
|
# Locator.setTimeout() method
|
|
|
|
|
|
|
|
#### Signature:
|
|
|
|
|
|
|
|
```typescript
|
|
|
|
class Locator {
|
2023-08-02 12:50:46 +00:00
|
|
|
setTimeout(timeout: number): Locator<T>;
|
2023-06-12 08:11:43 +00:00
|
|
|
}
|
|
|
|
```
|
|
|
|
|
|
|
|
## Parameters
|
|
|
|
|
|
|
|
| Parameter | Type | Description |
|
|
|
|
| --------- | ------ | ----------- |
|
|
|
|
| timeout | number | |
|
|
|
|
|
|
|
|
**Returns:**
|
|
|
|
|
2023-08-02 12:50:46 +00:00
|
|
|
[Locator](./puppeteer.locator.md)<T>
|