boolean isCellEditorActive = false;
for (int i = 0; i < logTable.rowCount(); i++) {
logTable.click(i, 0);
// try to edit cell by F2 key
logTable.pressShortcut(getKey(SWT.F2));
waitForCellEditorState(logTableViewer, false);
isCellEditorActive = logTableViewer.isCellEditorActive();
assertFalse(isCellEditorActive);
// try to edit first cell by mouse doubleclick