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