28 lines
658 B
Markdown
28 lines
658 B
Markdown
|
---
|
||
|
sidebar_label: Locator.setWaitForEnabled
|
||
|
---
|
||
|
|
||
|
# Locator.setWaitForEnabled() method
|
||
|
|
||
|
#### Signature:
|
||
|
|
||
|
```typescript
|
||
|
class Locator {
|
||
|
setWaitForEnabled<NodeType extends Node>(
|
||
|
this: Locator<NodeType>,
|
||
|
value: boolean
|
||
|
): Locator<NodeType>;
|
||
|
}
|
||
|
```
|
||
|
|
||
|
## Parameters
|
||
|
|
||
|
| Parameter | Type | Description |
|
||
|
| --------- | ------------------------------------------------- | ----------- |
|
||
|
| this | [Locator](./puppeteer.locator.md)<NodeType> | |
|
||
|
| value | boolean | |
|
||
|
|
||
|
**Returns:**
|
||
|
|
||
|
[Locator](./puppeteer.locator.md)<NodeType>
|