SWTBotShell shell = bot.shell("New File");
shell.activate();
bot.textWithLabel("File name:").setText(fileName);
bot.button("Finish").click();
SWTUtils.sleep(2000);
SWTBotTreeItem treeItem = projectTree.getNode(fileName);
return new ProjectFileBot(treeItem);
}