Package org.zkoss.test

Examples of org.zkoss.test.JQuery.first()


  public void validation_buttons() {
    spreadsheet.focus(1, 3);
   
    JQuery buttons = spreadsheet.getMainBlock().getRow(1).jq$n().children(".zsdropdown");
    Assert.assertEquals(1, buttons.length());
    Assert.assertTrue(buttons.first().isVisible());
   
    spreadsheet.focus(25, 3);
    buttons = spreadsheet.getMainBlock().getRow(25).jq$n().children(".zsdropdown");
    Assert.assertEquals(1, buttons.length());
    Assert.assertTrue(buttons.first().isVisible());
View Full Code Here


    Assert.assertTrue(buttons.first().isVisible());
   
    spreadsheet.focus(25, 3);
    buttons = spreadsheet.getMainBlock().getRow(25).jq$n().children(".zsdropdown");
    Assert.assertEquals(1, buttons.length());
    Assert.assertTrue(buttons.first().isVisible());
  }
}
View Full Code Here

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.