Improve control clicking

Add a click hint
This commit is contained in:
LarsBrubaker 2021-10-29 22:21:52 -07:00
parent 3365a4f95c
commit 16f31b16e4
3 changed files with 44 additions and 5 deletions

View file

@ -54,7 +54,8 @@ namespace MatterHackers.MatterControl.Tests.Automation
.ClickByName("PrintPopupMenu")
.ClickByName("Export GCode Button")
.Type(fullPathToGcodeFile)
.Type("{Enter}");
.Type("{Enter}")
.Delay();
Assert.IsTrue(File.Exists(fullPathToGcodeFile + ".gcode"), "Exported file not found");