Don't load zip container image before theme is loaded

updated localizations
This commit is contained in:
Lars Brubaker 2022-02-07 11:08:13 -08:00
parent d91954e95e
commit 596b82de93
25 changed files with 38890 additions and 23222 deletions

View file

@ -557,11 +557,9 @@ namespace MatterHackers.MatterControl.Tests.Automation
public static AutomationRunner EnsureWelcomePageClosed(this AutomationRunner testRunner)
{
testRunner.WaitFor(() => testRunner.NameExists("Cancel Wizard Button"));
// Close the WelcomePage window if active
//if (//testRunner.GetWidgetByName("HeaderRow", out _) is GuiWidget headerRow
//&& headerRow.Parents<DialogPage>().FirstOrDefault() is Tour.WelcomePage welcomePage
//&& testRunner.NameExists("Cancel Wizard Button", 1))
//testRunner.NameExists("Cancel Wizard Button", 1))
if (testRunner.NameExists("Cancel Wizard Button", 1))
{
testRunner.ClickByName("Cancel Wizard Button");
}