Unverified Commit f085e1a9 authored by Jenn Magder's avatar Jenn Magder Committed by GitHub

Add timeout to keyboard finder to diagnose flake (#97258)

parent 5d43e80d
......@@ -39,7 +39,9 @@ void main() {
// Bring up keyboard
await driver.tap(textFieldFinder);
await driver.waitFor(keyboardVisibilityIndicatorFinder);
// TODO(jmagman): Remove timeout once flake has been diagnosed. https://github.com/flutter/flutter/issues/96787
await driver.waitFor(keyboardVisibilityIndicatorFinder, timeout: const Duration(seconds: 5));
// Ensure that TextField is visible again
await driver.waitFor(textFieldFinder);
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment