Browse Source

add a delay when closing child windows.

pull/10555/head
Dan Walmsley 3 years ago
parent
commit
a577ee6399
  1. 1
      tests/Avalonia.IntegrationTests.Appium/ElementExtensions.cs

1
tests/Avalonia.IntegrationTests.Appium/ElementExtensions.cs

@ -140,6 +140,7 @@ namespace Avalonia.IntegrationTests.Appium
.First(x => x.Text == newWindowTitle);
var (close, _, _) = ((AppiumWebElement)newWindow).GetChromeButtons();
close!.Click();
Thread.Sleep(1000);
});
}
}

Loading…
Cancel
Save