Browse Source

fix reliability issue in osx window state test.

pull/8710/head
Dan Walmsley 4 years ago
parent
commit
6054fa98f1
  1. 3
      tests/Avalonia.IntegrationTests.Appium/WindowTests.cs

3
tests/Avalonia.IntegrationTests.Appium/WindowTests.cs

@ -92,7 +92,8 @@ namespace Avalonia.IntegrationTests.Appium
Assert.True(clientSize.Width >= current.ScreenRect.Width);
Assert.True(clientSize.Height >= current.ScreenRect.Height);
windowState.Click();
windowState.SendClick();
_session.FindElementByName("Normal").SendClick();
current = GetWindowInfo();

Loading…
Cancel
Save