Locator.setWaitForStableBoundingBox() method

Creates a new locator instance by cloning the current locator and specifying whether the locator has to wait for the element’s bounding box to be same between two consecutive animation frames.

Signature

class Locator {
  setWaitForStableBoundingBox<ElementType extends Element>(
    this: Locator<ElementType>,
    value: boolean,
  ): Locator<ElementType>;
}

Parameters

Parameter Type Description
this [Locator](./puppeteer.locator.md)<ElementType>
value boolean

Returns:

Locator<ElementType>

Default value:

true