Skip to content

Commit

Permalink
Increase default element wait timeout
Browse files Browse the repository at this point in the history
  • Loading branch information
sudharsan-selvaraj authored Jul 23, 2024
1 parent 6c90326 commit 963ca29
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -52,7 +52,7 @@ void startSession() throws MalformedURLException {
FlutterDriverOptions flutterOptions = new FlutterDriverOptions()
.setFlutterServerLaunchTimeout(Duration.ofMinutes(2))
.setFlutterSystemPort(9999)
.setFlutterElementWaitTimeout(Duration.ofSeconds(3));
.setFlutterElementWaitTimeout(Duration.ofSeconds(10));
if (IS_ANDROID) {
driver = new FlutterAndroidDriver(service.getUrl(), flutterOptions
.setUiAutomator2Options(new UiAutomator2Options()
Expand Down

0 comments on commit 963ca29

Please sign in to comment.