Assert.assertEquals("90", getCell(9, 11).getText());
}
@Test
public void paste_special_transpose() {
CellCache F12 = getCellCache(11, 5);
CellCache F13 = getCellCache(12, 5);
spreadsheet.setSelection(11, 5, 12, 5);
click(".zstbtn-copy");
mouseDirector.openCellContextMenu(11, 10);
click(".z-menupopup:visible .zsmenuitem-pasteSpecial");
jq("$transpose input").getWebElement().click();
click("$_pasteSpecialDialog $okBtn");
CellCache K12 = getCellCache(11, 10);
CellCache K13 = getCellCache(11, 11);
Assert.assertEquals(F12.getText(), K12.getText());
Assert.assertEquals(F13.getText(), K13.getText());
}