cells.add(new Cell(rows[0], cols[i]));
} else {
}
final int maxRow = findMaxRow(cells);
new Retry("Could not find row " + maxRow + " in table", ComponentFinder.RETRY_INTERVAL_MS,
ComponentFinder.COMPONENT_SEARCH_RETRY_COUNT, new Attempt() {
@Override public void perform() {
int rowCount = eventQueueRunner.invokeInteger(table, "getRowCount");
if(maxRow >= rowCount)
retry();
}