I'm trying to write a SWTBot test that opens the welcome page view in eclipse and then reads/maps the content into some object (don't care if only string) so I could compare it with the expected text, I thought this is a very trivial issue and that i will find example on the internet, but I couldn't! Any help please?
@Test
public void testExpandText() throws Exception {
bot.menu(Constants.HELP_MENU).menu(Constants.WELCOME).click();
welcomePageView = bot.viewByTitle(Constants.WELCOME);
//expandText();
//assertText();
welcomePageView.close();
}