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
589 B
Markdown
28 lines
589 B
Markdown
---
|
|
sidebar_label: Locator.race
|
|
---
|
|
|
|
# Locator.race() method
|
|
|
|
Creates a race between multiple locators but ensures that only a single one acts.
|
|
|
|
#### Signature:
|
|
|
|
```typescript
|
|
class Locator {
|
|
static race<Locators extends readonly unknown[] | []>(
|
|
locators: Locators
|
|
): Locator<AwaitedLocator<Locators[number]>>;
|
|
}
|
|
```
|
|
|
|
## Parameters
|
|
|
|
| Parameter | Type | Description |
|
|
| --------- | -------- | ----------- |
|
|
| locators | Locators | |
|
|
|
|
**Returns:**
|
|
|
|
[Locator](./puppeteer.locator.md)<[AwaitedLocator](./puppeteer.awaitedlocator.md)<Locators\[number\]>>
|