Package

Source Code of SS_030_07_Test

import org.zkoss.ztl.JQuery;


public class SS_030_07_Test extends SSAbstractTestCase {

    @Override
    protected void executeTest() {
      //freeze some rows first
      click(jq("$viewMenu"));
      waitResponse();
      mouseOver(jq("$freezeCols"));
      waitResponse();
      click(jq("$freezeCol7"));
      waitResponse();
      // TODO: Verify correct row is frozen
      JQuery p = jq("div.zsleftblock");
      verifyTrue(p.width() != 0);
      JQuery r = p.children("div:nth-child(7)");
      int numOfCells = r.children().length();
      int width = r.width();
      verifyTrue("numOfCells=" + numOfCells + ", widht=" + width, r.width() != 0 && numOfCells == 7);
    }
}
TOP

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