Package

Source Code of SS_022_Test

import org.zkoss.ztl.JQuery;

//"Select a cell
//Click Shift cells up menuitem"
public class SS_022_Test extends SSAbstractTestCase {

 
  /**
   * Shift cell up
   */
  @Override
  protected void executeTest() {
    JQuery cell_F_11 = getSpecifiedCell(5, 10);
    String origValue = getCellText(cell_F_11);
    JQuery cell_F_12 = getSpecifiedCell(5, 11);
    String downCellValue = getCellText(cell_F_12);
    JQuery cell_F_13 = getSpecifiedCell(5, 12);
    String downDownCellValue = getCellText(cell_F_13);
    clickCell(cell_F_11);
    clickCell(cell_F_11);
    click("$editMenu");
    waitResponse();
    mouseOver(jq("$delete"));   
    waitResponse();
    click("$shiftCellUp");
    waitResponse();
    String newValue = getCellText(cell_F_11);
    String newDownCellValue = getCellText(cell_F_12);

        verifyTrue("Original cell value=" + origValue
            + "\n, Original down cell value=" + downCellValue
            + "\n, Original downDown cell value=" + downDownCellValue
            + "\n, New cell value=" + newValue
            + "\n, New down cell value=" + newDownCellValue,
            downCellValue.equals(newValue) && newDownCellValue.equals(downDownCellValue));
  }
}
TOP

Related Classes of SS_022_Test

TOP
Copyright © 2018 www.massapi.com. All rights reserved.
All source code are property of their respective owners. Java is a trademark of Sun Microsystems, Inc and owned by ORACLE Inc. Contact coftware#gmail.com.