Package

Source Code of SS_014_Test

import org.zkoss.ztl.JQuery;

//Edit>>Clear Content
//clear cell F21
public class SS_014_Test extends SSAbstractTestCase {

  /**
   * Clear Content
   */
    @Override
    protected void executeTest() {
        JQuery cell_F_21 = getSpecifiedCell(5, 20);
        String origValue = getCellText(cell_F_21);
        clickCell(cell_F_21);
        clickCell(cell_F_21);
      click("$editMenu");
      waitResponse();
      click("$clearContent");
      waitResponse();
        String newValue = getCellText(cell_F_21);
     
        /**
         * Expected:
       * clear selection text and style
         */
        verifyTrue("Original value=" + origValue + "" +
            "\n, Cleared value=" + newValue,
            "".equals(newValue));
    }
   

}
TOP

Related Classes of SS_014_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.