selectUntil method
Implementation
Future<UITestChainNode<U, Element, T>> selectUntil(
String? selectors, {
int? timeoutMs,
int? intervalMs,
int? minMs,
Iterable<Element> Function(List<Element> elems)? mapper,
}) => thenChain(
(o) => o
.selectUntil(
selectors,
timeoutMs: timeoutMs,
intervalMs: intervalMs,
minMs: minMs,
mapper: mapper,
)
.then((o) => o as UITestChainNode<U, Element, T>),
);