waitForTappable method

Future<void> waitForTappable(
  1. SerializableFinder finder, {
  2. Duration? timeout,
})

Waits until finder is tappable.

Implementation

Future<void> waitForTappable(SerializableFinder finder, {Duration? timeout}) async {
  await sendCommand(WaitForTappable(finder, timeout: timeout));
}