}
public List<String> getAttributeValues()
{
SWTBotTree tree = bot.tree();
List<String> attributes = new ArrayList<String>();
int rowCount = tree.rowCount();
for ( int i = 0; i < rowCount; i++ )
{
String attribute = tree.cell( i, 0 );
String value = tree.cell( i, 1 );
attributes.add( attribute + ": " + value );
}
return attributes;
}