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

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


     * @return true if displayed
     */
    protected boolean checkFileGridWrapper(String snippetId) {
        WrapperResultPage resultPage = launchSnippet(snippetId);
        switchContextToIframe(resultPage, resultPage.getFileGridFrame());
        GridResultPage innerIframePage = new GridResultPage(resultPage);
        innerIframePage.gridId="innerGridDiv";
        BaseGridTest gridTest = new BaseGridTest();
       
        return gridTest.checkGrid(innerIframePage, true, true, snippetId);
    }
View Full Code Here


    protected boolean checkGrid(String snippetId, boolean hasPager) {
        return checkGrid(snippetId, hasPager, false);
    }
   
    protected boolean checkGrid(String snippetId, boolean hasPager, boolean hasSorter){
        GridResultPage resultPage = launchGrid(snippetId);
       
        return checkGrid(resultPage, hasPager, hasSorter, snippetId);
    }
View Full Code Here

     *
     * @param resultPage
     * @return
     */
    protected GridResultPage wrapResultPage(ResultPage resultPage) {
        return new GridResultPage(resultPage);
    }
View Full Code Here

TOP

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

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.