Package com.ibm.sbt.automation.core.test.pageobjects

Examples of com.ibm.sbt.automation.core.test.pageobjects.GridSorterPage


     * @return
     */
    protected boolean checkSorter(GridResultPage resultPage, String[] rows) {
      boolean sortingIsOkay = true;
     
      GridSorterPage sortPage = resultPage.getSortingPager();

      sortPage.SortByFirstSortAnchor();
     
      //wait for the rows of the grid to load after changing page
      waitForChildren("table", "tbody/tr[5]", 5);
     
      List<WebElement> rowsAfterSorting = resultPage.getTableRows();
View Full Code Here

TOP

Related Classes of com.ibm.sbt.automation.core.test.pageobjects.GridSorterPage

Copyright © 2018 www.massapicom. 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.