waitFor method
- SerializableFinder finder, {
- Duration? timeout,
Waits until finder locates the target.
The finder will wait until there is no pending frame scheduled
in the app under test before executing an action.
See also:
- FlutterDriver.runUnsynchronized, which will execute an action with frame sync disabled even while frames are pending.
Implementation
Future<void> waitFor(SerializableFinder finder, {Duration? timeout}) async {
  await sendCommand(WaitFor(finder, timeout: timeout));
}