From 1f7f8a2c001543c97df776b148e9c03f854600f5 Mon Sep 17 00:00:00 2001 From: Shane Neuville Date: Wed, 19 Jun 2019 11:21:08 -0600 Subject: [PATCH] [UITests] Wait a little bit longer for go to test button to appear (#6570) --- Xamarin.Forms.Core.UITests.Shared/Utilities/AppExtensions.cs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Xamarin.Forms.Core.UITests.Shared/Utilities/AppExtensions.cs b/Xamarin.Forms.Core.UITests.Shared/Utilities/AppExtensions.cs index 5ef4b93..f5d8a0e 100644 --- a/Xamarin.Forms.Core.UITests.Shared/Utilities/AppExtensions.cs +++ b/Xamarin.Forms.Core.UITests.Shared/Utilities/AppExtensions.cs @@ -28,7 +28,7 @@ namespace Xamarin.Forms.Core.UITests { const string goToTestButtonQuery = "* marked:'GoToTestButton'"; - app.WaitForElement(q => q.Raw(goToTestButtonQuery), "Timed out waiting for Go To Test button to disappear", TimeSpan.FromSeconds(10)); + app.WaitForElement(q => q.Raw(goToTestButtonQuery), "Timed out waiting for Go To Test button to appear", TimeSpan.FromMinutes(2)); var text = Regex.Match(page, "'(?[^']*)'").Groups["text"].Value; -- 2.7.4