From 1bb56b18127bac2e9abc9c96614bb8aa998c5548 Mon Sep 17 00:00:00 2001 From: Shane Neuville Date: Fri, 28 Jun 2024 07:57:28 -0500 Subject: [PATCH 1/4] Bump Appium version to 2.11 --- eng/scripts/appium-install.ps1 | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/eng/scripts/appium-install.ps1 b/eng/scripts/appium-install.ps1 index 0e491dcce5cb..87cc3bc6729b 100644 --- a/eng/scripts/appium-install.ps1 +++ b/eng/scripts/appium-install.ps1 @@ -40,7 +40,7 @@ Find the script for that on the DevDiv Azure DevOps instance, Engineering team, param ( - [string] $appiumVersion = '2.5.4', + [string] $appiumVersion = '2.11.0', [string] $windowsDriverVersion = '2.12.23', [string] $androidDriverVersion = '3.5.1', [string] $iOSDriverVersion = '7.16.1', From 6c4acf624140e463c5b96fdb1ef482582c0f7cfa Mon Sep 17 00:00:00 2001 From: Shane Neuville Date: Fri, 28 Jun 2024 09:39:40 -0500 Subject: [PATCH 2/4] Update CarouselViewUITests.UpdateCurrentItem.cs --- .../Tests/Issues/CarouselViewUITests.UpdateCurrentItem.cs | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/src/Controls/tests/TestCases.Shared.Tests/Tests/Issues/CarouselViewUITests.UpdateCurrentItem.cs b/src/Controls/tests/TestCases.Shared.Tests/Tests/Issues/CarouselViewUITests.UpdateCurrentItem.cs index e53584645f84..5dbac5cd9da1 100644 --- a/src/Controls/tests/TestCases.Shared.Tests/Tests/Issues/CarouselViewUITests.UpdateCurrentItem.cs +++ b/src/Controls/tests/TestCases.Shared.Tests/Tests/Issues/CarouselViewUITests.UpdateCurrentItem.cs @@ -20,10 +20,11 @@ public CarouselViewUpdateCurrentItem(TestDevice device) public void Issue9827Test() { App.WaitForNoElement("Pos:0"); + App.WaitForElement("btnNext"); App.Click("btnNext"); App.WaitForNoElement("Item 1 with some additional text"); App.WaitForNoElement("Pos:1"); } } } -#endif \ No newline at end of file +#endif From b4ba76b9b179d21ab521c6e581e27513d457ee5a Mon Sep 17 00:00:00 2001 From: Shane Neuville Date: Fri, 28 Jun 2024 11:29:39 -0500 Subject: [PATCH 3/4] Update appium-install.ps1 --- eng/scripts/appium-install.ps1 | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/eng/scripts/appium-install.ps1 b/eng/scripts/appium-install.ps1 index 87cc3bc6729b..3da9ae9b8e9a 100644 --- a/eng/scripts/appium-install.ps1 +++ b/eng/scripts/appium-install.ps1 @@ -42,7 +42,7 @@ param ( [string] $appiumVersion = '2.11.0', [string] $windowsDriverVersion = '2.12.23', - [string] $androidDriverVersion = '3.5.1', + [string] $androidDriverVersion = '3.7.0', [string] $iOSDriverVersion = '7.16.1', [string] $macDriverVersion = '1.17.3', [string] $logsDir = '../appium-logs' From a0a167941beb89de5158e305d6cab84fceda784b Mon Sep 17 00:00:00 2001 From: Shane Neuville Date: Fri, 28 Jun 2024 11:29:53 -0500 Subject: [PATCH 4/4] Update CarouselViewUITests.UpdateCurrentItem.cs