mirror of
https://github.com/puppeteer/puppeteer
synced 2024-06-14 14:02:48 +00:00
28 lines
538 B
Markdown
28 lines
538 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 Array<Locator<unknown>>>(
|
||
|
locators: Locators
|
||
|
): Locator<UnionLocatorOf<Locators>>;
|
||
|
}
|
||
|
```
|
||
|
|
||
|
## Parameters
|
||
|
|
||
|
| Parameter | Type | Description |
|
||
|
| --------- | -------- | ----------- |
|
||
|
| locators | Locators | |
|
||
|
|
||
|
**Returns:**
|
||
|
|
||
|
[Locator](./puppeteer.locator.md)<UnionLocatorOf<Locators>>
|