find method

Future find(
  1. String subSelector
)

Finds a descendant element inside this component using subSelector.

Implementation

Future<dynamic> find(String subSelector) =>
    Future.sync(() => browser.findElement(scope(subSelector)));