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
672 B
Markdown
28 lines
672 B
Markdown
---
|
|
sidebar_label: Locator.setVisibility
|
|
---
|
|
|
|
# Locator.setVisibility() method
|
|
|
|
#### Signature:
|
|
|
|
```typescript
|
|
class Locator {
|
|
setVisibility<NodeType extends Node>(
|
|
this: Locator<NodeType>,
|
|
visibility: VisibilityOption
|
|
): Locator<NodeType>;
|
|
}
|
|
```
|
|
|
|
## Parameters
|
|
|
|
| Parameter | Type | Description |
|
|
| ---------- | --------------------------------------------------- | ----------- |
|
|
| this | [Locator](./puppeteer.locator.md)<NodeType> | |
|
|
| visibility | [VisibilityOption](./puppeteer.visibilityoption.md) | |
|
|
|
|
**Returns:**
|
|
|
|
[Locator](./puppeteer.locator.md)<NodeType>
|