in src/main/java/platform/qa/officer/pages/components/Table.java [102:108]
private WebElement getOptionalElement(WebElement row, String xpathExpression) {
try {
return row.findElement(xpath(xpathExpression));
} catch (NoSuchElementException ex) {
return null;
}
}