Package

Source Code of SS_001_Test

import org.zkoss.ztl.JQuery;


public class SS_001_Test extends SSAbstractTestCase {

  /**
   * Testcase:
   *
   * 1. Select cell
   * 2. Click File menu
   *
   * Expected:
   * Selection remain focus
   */
    @Override
    protected void executeTest() {
      verifyFalse(isFocusOnCell(5, 20));
      JQuery cell = focusOnCell(5, 20);

      click("$fileMenu");
      verifyTrue(isFocusOnCell(cell));
    }
}
TOP

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