private SWTBotTreeItem getEntry( String... path )
{
SWTBotTree browserTree = bot.tree();
List<String> pathList = new ArrayList<String>( Arrays.asList( path ) );
SWTBotTreeItem entry = null;
while ( !pathList.isEmpty() )
{
String node = pathList.remove( 0 );
if ( entry == null )
{
node = adjustNodeName( browserTree, node );
entry = browserTree.getTreeItem( node );
}
else
{
// adjust current path, because the label is decorated with the
// number of children
node = adjustNodeName( entry, node );
entry = entry.getNode( node );
}
if ( !pathList.isEmpty() )
{
// expand entry and wait till