From 9da06eb5dfc8da9b91cbb5eb74de7b92515a2957 Mon Sep 17 00:00:00 2001 From: John Lewin Date: Sat, 3 Jun 2017 15:32:08 -0700 Subject: [PATCH] Retire ClickLibraryEditButtonOpensPartPreviewWindow test --- .../LocalLibraryTests.cs | 29 ------------------- 1 file changed, 29 deletions(-) diff --git a/Tests/MatterControl.AutomationTests/LocalLibraryTests.cs b/Tests/MatterControl.AutomationTests/LocalLibraryTests.cs index 386412870..d4c43bc2f 100644 --- a/Tests/MatterControl.AutomationTests/LocalLibraryTests.cs +++ b/Tests/MatterControl.AutomationTests/LocalLibraryTests.cs @@ -213,35 +213,6 @@ namespace MatterHackers.MatterControl.Tests.Automation }); } - [Test] - public async Task ClickLibraryEditButtonOpensPartPreviewWindow() - { - AutomationTest testToRun = (testRunner) => - { - testRunner.CloseSignInAndPrinterSelect(); - //Navigate to Local Library - testRunner.ClickByName("Library Tab"); - testRunner.NavigateToFolder("Local Library Row Item Collection"); - - testRunner.Delay(1); - - string rowItem = "Row Item Calibration - Box"; - testRunner.ClickByName("Library Edit Button"); - testRunner.Delay(1); - testRunner.ClickByName(rowItem); - - MatterControlUtilities.LibraryEditSelectedItem(testRunner); - - //Make sure that Export Item Window exists after Export button is clicked - bool exportItemWindowExists = testRunner.WaitForName("Part Preview Window", 2); - Assert.IsTrue(exportItemWindowExists == true); - - return Task.FromResult(0); - }; - - await MatterControlUtilities.RunTest(testToRun); - } - [Test] public async Task RemoveButtonClickedRemovesSingleItem() {