private static void OpenExplorerInFolder(string defaultFolder)
        {
            Cruciatus.Application expl = new Cruciatus.Application(@"C:\Windows\explorer.exe");
            expl.Start(defaultFolder);
            Thread.Sleep(1000);

            var winFinder = By.Name("Winium.Desktop.Example").AndType(ControlType.Window);
            var explorer  = Cruciatus.CruciatusFactory.Root.FindElement(winFinder);

            mouseMove(explorer.FindElementByUid("TitleBar"), 1300, 100);

            CruciatusElement items = explorer.FindElementByName("Items View");

            mouseMove(items.FindElementByName(fileName), 100, 384);
            Thread.Sleep(1000);

            explorer.SetFocus();
            Thread.Sleep(1000);
            explorer.FindElementByName("System").DoubleClick();
        }