HtmlDivision contentDiv = (HtmlDivision) client.getElement("content");
List<?> valueTDs = contentDiv.getByXPath(
".//div[@class='tabmenubox']//td[contains(text(),'"+name+"']/following-sibling::td[1]");
//assertTrue( name + " row not found.", valueTDs.size() == 1 );
if( valueTDs.size() == 1 )
throw new EmbJoprTestException( name + " row not found." );
String value = ((HtmlTableCell) valueTDs).getTextContent();
return value;
}