if (objectTable == null)
throw new RuntimeException("Acceptance tests require table with id = " + tableId);
int rowToSearchForLink = getFirstRowNumberWithText(objectTable, text);
for (int column = 0; column < objectTable.getColumnCount(); column++) {
TableCell cell = objectTable.getTableCell(rowToSearchForLink, column);
LinkImagePredicate predicate = new LinkImagePredicate();
WebLink editLink = cell.getFirstMatchingLink(predicate, imageName);
if (editLink != null) {
clickLink( editLink);
foundLink = true;
break;