private void setBorderWithColorAndVerify(BorderType border, int tRow, int lCol, int bRow, int rCol) {
CellCacheAggeration.Builder builder = getCellCacheAggerationBuilder(tRow, lCol, bRow, rCol);
spreadsheet.setSelection(tRow, lCol, bRow, rCol);
CellCacheAggeration borderComparsionCache = builder.expand(1).build("border");
Color color = selectAnotherBorderColor();
click(".zstbtn-border .zstbtn-arrow");
click(".zsmenuitem-" + border.toString());
verifyBorder(border, color.getColor(), tRow, lCol, bRow, rCol, borderComparsionCache);
}