public class SS_179_Test extends SSAbstractTestCase {
@Override
protected void executeTest() {
// Select source cell
JQuery cell_J_13 = getSpecifiedCell(9, 12);
clickCell(cell_J_13);
clickCell(cell_J_13);
// Ctrl + C
keyDownNative(CTRL);
waitResponse();
keyDownNative(C);
waitResponse();
keyUpNative(C);
waitResponse();
keyUpNative(CTRL);
waitResponse();
// Right click target cell
JQuery cell_L_13 = loadTargetCell();
clickCell(cell_L_13);
rightClickCell(cell_L_13);
waitResponse();
// Click Paste Special on the context menu
click(jq("$pasteSpecial"));
waitResponse();
// Choose Column width
click(jq("$colWidth input[id*=real]"));
waitResponse();
click(jq("$okBtn"));
waitResponse();
// Verify
cell_L_13 = loadTargetCell();
verifyEquals("Different width! Source width: " + cell_J_13.width() + ", Target width: " + cell_L_13.width(),
cell_J_13.width(), cell_L_13.width());
}