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