* Creates an asynchronous locator function that can be used to find `ComponentHarness` instances * or elements under the root element of this `LocatorFactory`. * * For example, given the following DOM and assuming `DivHarness.hostSelector` is `'div'` and * `IdIsD1Harness.hostSelector` is
(
...queries: T
)
| 274 | * the union of all result types for each query. |
| 275 | */ |
| 276 | locatorForAll<T extends (HarnessQuery<any> | string)[]>( |
| 277 | ...queries: T |
| 278 | ): () => Promise<LocatorFnResult<T>[]>; |
| 279 |
no outgoing calls
no test coverage detected