in src/main/java/platform/qa/officer/pages/TaskPage.java [179:185]
public void checkCheckBoxIsChecked(String fieldName, String fieldData) {
By checkBox = xpath(format(checkboxPath, fieldName));
wait.until(presenceOfElementLocated(checkBox));
if (fieldData.equalsIgnoreCase("так")) {
wait.until(attributeContains(checkBox, "class", "Mui-checked"));
}
}