Skip to content

Commit

Permalink
Bump Appium Drivers (#23349)
Browse files Browse the repository at this point in the history
  • Loading branch information
PureWeen authored Jun 29, 2024
1 parent bd09dfe commit cbd5426
Show file tree
Hide file tree
Showing 2 changed files with 8 additions and 13 deletions.
6 changes: 3 additions & 3 deletions eng/scripts/appium-install.ps1
Original file line number Diff line number Diff line change
Expand Up @@ -42,9 +42,9 @@ param
(
[string] $appiumVersion = '2.11.0',
[string] $windowsDriverVersion = '2.12.23',
[string] $androidDriverVersion = '3.7.0',
[string] $iOSDriverVersion = '7.16.1',
[string] $macDriverVersion = '1.17.3',
[string] $androidDriverVersion = '3.7.0',
[string] $iOSDriverVersion = '7.21.0',
[string] $macDriverVersion = '1.17.4',
[string] $logsDir = '../appium-logs'
)

Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -17,20 +17,15 @@ public CollectionViewVisibilityUITests(TestDevice device)
public override string Issue => "iOS application suspended at UICollectionViewFlowLayout.PrepareLayout() when using IsVisible = false";

// InitiallyInvisbleCollectionViewSurvivesiOSLayoutNonsense(src\Compatibility\ControlGallery\src\Issues.Shared\Issue12714.cs)
#if ANDROID
[Test]
[Category(UITestCategories.CollectionView)]
public void InitiallyInvisbleCollectionViewSurvivesiOSLayoutNonsense()
{
if (Device == TestDevice.Android)
{
App.WaitForElement(Show);
App.Click(Show);
App.WaitForNoElement(Success);
}
else
{
Assert.Ignore("This test is failing, requires research.");
}
App.WaitForElement(Show);
App.Click(Show);
App.WaitForNoElement(Success);
}
#endif
}
}

0 comments on commit cbd5426

Please sign in to comment.