waitForAbsent method
- SerializableFinder finder, {
- Duration? timeout,
Waits until finder
can no longer locate the target.
Implementation
Future<void> waitForAbsent(SerializableFinder finder, { Duration? timeout }) async {
await sendCommand(WaitForAbsent(finder, timeout: timeout));
}