select method

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

Implementation

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