querySelectorAll<O extends Element> method

Future<UITestChainNode<U, List<O>, T>> querySelectorAll<O extends Element>(
  1. String? selectors, {
  2. bool expected = false,
})

Implementation

Future<UITestChainNode<U, List<O>, T>> querySelectorAll<O extends Element>(
        String? selectors,
        {bool expected = false}) =>
    thenChain((o) => o.querySelectorAll<O>(selectors, expected: expected)
        as UITestChainNode<U, List<O>, T>);