private void ShowPrintLevelSettings()
        {
            AutomationRunner testRunner = new AutomationRunner(inputType: AutomationRunner.InputType.Simulated, drawSimulatedMouse: false);

            testRunner.TimeToMoveMouse = 0;
            testRunner.UpDelaySeconds  = 0;

            if (testRunner.NameExists("SettingsAndControls"))
            {
                testRunner.ClickByName("SettingsAndControls", 5);
                testRunner.Wait(.2);
            }
            testRunner.ClickByName("Slice Settings Tab", .1);
            testRunner.ClickByName("Options Tab", .2);

            SystemWindow containingWindow;
            var          autoLevelRowItem = testRunner.GetWidgetByName("AutoLevelRowItem", out containingWindow, .2);

            if (autoLevelRowItem != null)
            {
                new AttentionGetter(autoLevelRowItem);
            }

            testRunner.Dispose();
        }
Example #2
0
        private void ShowPrinterSettings()
        {
            AutomationRunner testRunner = new AutomationRunner(inputType: AutomationRunner.InputType.Simulated, drawSimulatedMouse: false);

            testRunner.TimeToMoveMouse = 0;
            testRunner.UpDelaySeconds  = 0;

            if (testRunner.NameExists("SettingsAndControls"))
            {
                testRunner.ClickByName("SettingsAndControls", 5);
                testRunner.Wait(.2);
            }
            testRunner.ClickByName("Slice Settings Tab", .1);
            testRunner.ClickByName("Printer Tab", .2);
            testRunner.ClickByName("Connection Tab", .1);
            testRunner.Dispose();
        }