* Searches for an element with the given selector under the current instances's root element, * and returns a `HarnessLoader` rooted at the matching element. If multiple elements match the * selector, the first is used. If no elements match, an error is thrown. * @param selector The selecto
(selector: string)
| 88 | * @throws If a matching element can't be found. |
| 89 | */ |
| 90 | getChildLoader(selector: string): Promise<HarnessLoader>; |
| 91 | |
| 92 | /** |
| 93 | * Searches for all elements with the given selector under the current instances's root element, |
no outgoing calls