selectExpected method
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);
}