public void Test05_ClickWindowButtons() { string windowName = "Calc"; if (WindowController.WindowExists(windowName)) { Dictionary <int, string> buttons = WindowController.GetWindowButtons(windowName); Assert.AreNotEqual(0, buttons.Count); WindowController.ClickButtonOnWindow(windowName, "Grads"); //multiplication button } }