From e4beddd026ea4f01a93028c67a3dcf9c51b570a8 Mon Sep 17 00:00:00 2001 From: DatDang Date: Mon, 11 Nov 2024 15:34:55 +0700 Subject: [PATCH] fixup! TF-3269 Update login robot with starting page --- integration_test/robots/login_robot.dart | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/integration_test/robots/login_robot.dart b/integration_test/robots/login_robot.dart index 688bccbb5..492d7fa27 100644 --- a/integration_test/robots/login_robot.dart +++ b/integration_test/robots/login_robot.dart @@ -14,7 +14,7 @@ class LoginRobot extends CoreRobot { Future expectWelcomeViewVisible() => ensureViewVisible($(TwakeWelcomeView)); Future tapOnUseCompanyServer() async { - await $.pump(const Duration(seconds: 1)); + await $.pumpAndSettle(); await $(AppLocalizations().useCompanyServer).tap(); }