puppeteer/docs/api/puppeteer.locator.setwaitforenabled.md
jrandolf ede43ca2d3
chore: use RxJS for locator implementation (#10607)
Using RxJS greatly simplifies the control flow for locators and comes with automatic cleanup on failure. It greatly simplifies the `signal` logic and the retry logic.
2023-07-25 12:43:07 +02:00

658 B

sidebar_label
Locator.setWaitForEnabled

Locator.setWaitForEnabled() method

Signature:

class Locator {
  setWaitForEnabled<NodeType extends Node>(
    this: Locator<NodeType>,
    value: boolean
  ): Locator<NodeType>;
}

Parameters

Parameter Type Description
this Locator<NodeType>
value boolean

Returns:

Locator<NodeType>