@Test
public void testCreateProfile() {
bot.menu("File").menu("New Profile").click();
SWTBot profile = bot.shell("Profile").bot();
assertTrue("Profile Dialog opens with General Tab selected", profile.tabItem("General").isActive());
profile.text(0).setText("SWTBot Profile 1");
profile.text(1).setText("Description");
profile.button("Ok").click();
}
}