}
public static FrameFixture getMainWindow(Robot robot) {
FrameFixture rootWindow = frameWithTitle(MAIN_WINDOW_TITLE).withTimeout(MAIN_WINDOW_TIMEOUT).using(robot);
rootWindow.show();
rootWindow.maximize();
return rootWindow;
}
public static void closeApplicationWithoutSaving(FrameFixture rootWindow, Robot robot) {
rootWindow.close();