mirror of
https://github.com/puppeteer/puppeteer
synced 2024-06-14 14:02:48 +00:00
ede43ca2d3
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.
28 lines
727 B
Markdown
28 lines
727 B
Markdown
---
|
|
sidebar_label: Locator.setEnsureElementIsInTheViewport
|
|
---
|
|
|
|
# Locator.setEnsureElementIsInTheViewport() method
|
|
|
|
#### Signature:
|
|
|
|
```typescript
|
|
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](./puppeteer.locator.md)<ElementType>
|