selectFirstWhereUntil<O extends Element> method

Future<UITestChainNode<U, O, T>> selectFirstWhereUntil<O extends Element>(
  1. String? selectors,
  2. bool test(
    1. Element element
    ), {
  3. int? timeoutMs,
  4. int? intervalMs,
  5. int? minMs,
  6. Iterable<Element> mapper(
    1. List<Element> elems
    )?,
})

Implementation

Future<UITestChainNode<U, O, T>> selectFirstWhereUntil<O 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<O>(selectors, test,
            timeoutMs: timeoutMs,
            intervalMs: intervalMs,
            minMs: minMs,
            mapper: mapper)
        .then((o) => o as UITestChainNode<U, O, T>));