selectExpected method

UITestChainNode<U, Element, T> selectExpected(
  1. String? selectors
)

Alias to querySelector.

Implementation

UITestChainNode<U, Element, T> selectExpected(String? selectors) {
  var o = querySelector(selectors, expected: true);
  return UITestChainNode<U, Element, T>(
      o.testChainRoot, o.element!, o.parent);
}