findByTestId
Future<
Waits for element with test ID to appear.
Implementation
Future<DomNode> findByTestId(
String testId, {
Duration timeout = const Duration(seconds: 1),
}) => _waitFor(() => getByTestId(testId), timeout);
Future<
Waits for element with test ID to appear.
Future<DomNode> findByTestId(
String testId, {
Duration timeout = const Duration(seconds: 1),
}) => _waitFor(() => getByTestId(testId), timeout);