Fix automation test issues

This commit is contained in:
jlewin 2019-05-09 14:34:55 -07:00
parent 568501cb29
commit 40721ba1c2
5 changed files with 14 additions and 11 deletions

View file

@ -225,6 +225,9 @@ namespace MatterHackers.MatterControl
}
}
/// <summary>
/// Navigate to the next incomplete stage or return to the home page
/// </summary>
public void NextIncompleteStage()
{
ISetupWizard nextStage = setupWizard.Stages.FirstOrDefault(s => s.SetupRequired && s.Enabled);
@ -235,7 +238,7 @@ namespace MatterHackers.MatterControl
}
else
{
this.ClosePage();
this.NavigateHome();
}
}