Locator.race() method

Creates a race between multiple locators trying to locate elements in parallel but ensures that only a single element receives the action.

Signature

class Locator {
  static race<Locators extends readonly unknown[] | []>(
    locators: Locators,
  ): Locator<AwaitedLocator<Locators[number]>>;
}

Parameters

Parameter Type Description
locators Locators

Returns:

Locator<AwaitedLocator<Locators\[number\]>>