Getting automation tests to pass with new ui changes

issue: MatterHackers/MCCentral#4108
Many test failures related to Controls/Terminal tabs being hidden by default
This commit is contained in:
Lars Brubaker 2018-09-10 10:42:18 -07:00
parent 5169b7d81c
commit f4d69c8f28
6 changed files with 34 additions and 5 deletions

View file

@ -17,8 +17,10 @@ namespace MatterHackers.MatterControl.Tests.Automation
Assert.IsFalse(testRunner.WaitForName("TerminalWidget", 0.5), "Terminal Window should not exist");
testRunner.ClickByName("Terminal Sidebar");
testRunner.Delay(1);
// when we start up a new session the Terminal Sidebar should not be present
Assert.IsFalse(testRunner.WaitForName("Terminal Sidebar", 0.5), "Terminal Sidebar should not exist");
testRunner.SwitchToTerminalTab();
Assert.IsTrue(testRunner.WaitForName("TerminalWidget"), "Terminal Window should exists after Show Terminal button is clicked");