selectWhereUntil method
Implementation
Future<UITestChainNode<U, List<Element>, T>> selectWhereUntil(
String? selectors,
bool Function(Element element) test, {
int? timeoutMs,
int? intervalMs,
int? minMs,
Iterable<Element> Function(List<Element> elems)? mapper,
bool expected = false,
}) => thenChain(
(o) => o.selectWhereUntil(
selectors,
test,
timeoutMs: timeoutMs,
intervalMs: intervalMs,
minMs: minMs,
mapper: mapper,
expected: expected,
),
);