* the exception
*/
public static SWTBotTree getConnectionsTree( SWTWorkbenchBot bot ) throws Exception
{
SWTBotView view = bot.viewByTitle( "Connections" );
view.show();
Tree tree = ( Tree ) bot.widget( widgetOfType( Tree.class ), view.getWidget() );
return new SWTBotTree( tree );
}