select method

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

Alias to Element.querySelector or UIComponent.querySelector.

Implementation

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