public void clickTreeNodeHandle( String treeNodeKey, String treeNodeId ) throws IOException
{
final String handleId = ":"+treeNodeKey+"::"+treeNodeId+":handle";
ClickableElement icon = (ClickableElement)jsfClient.getElement(handleId);
if( icon == null ) throw new ComponentIDNotFoundException(handleId);
icon.click();
}
/**
* Click a value on a DataTableScroller.
*