WebTable timeTable;
try {
timeTable = taskPage.getTableWithID("time_entries");
int lastRowIndex = timeTable.getRowCount() - 1;
TableCell lastRowCell = timeTable.getTableCell(lastRowIndex, 0);
HTMLElementPredicate imagePredicate = new LinkImagePredicate();
WebLink editLink = lastRowCell.getFirstMatchingLink(imagePredicate, EDIT_IMAGE);
editLink.click();
} catch (Exception e) {
throw new RuntimeException(ExceptionUtility.stackTraceToString(e));
}