selectAll method

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

Alias to Element.querySelectorAll or UIComponent.querySelectorAll.

Implementation

UITestChainNode<U, List<Element>, T> selectAll(
  String? selectors, {
  bool expected = false,
}) => querySelectorAllNonTyped(selectors, expected: expected);