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