Locator.setEnsureElementIsInTheViewport() method

Creates a new locator instance by cloning the current locator and specifying whether the locator should scroll the element into viewport if it is not in the viewport already.

Signature

class Locator {
  setEnsureElementIsInTheViewport<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