findTestabilityInTree method

Testability? findTestabilityInTree(
  1. Element? tree
)

Walks the DOM tree looking for a registered Testability instance.

TODO(b/168535057): Is this functionality actually necessary?

Implementation

Testability? findTestabilityInTree(Element? tree) {
  return _proxy?.findTestabilityInTree(this, tree);
}