Beispiel #1
0
        public static void Select3DPart(this AutomationRunner testRunner, string partNameToSelect)
        {
            if (testRunner.NameExists("3D View Edit", .2))
            {
                testRunner.ClickByName("3D View Edit");
            }
            testRunner.DragDropByName("InteractionLayer", "InteractionLayer", offsetDrop: new Agg.Point2D(10, 15), mouseButtons: MouseButtons.Right);

            testRunner.Delay(1);
            testRunner.ClickByName(partNameToSelect);
        }