Package net.thucydides.junit.integration.pages

Examples of net.thucydides.junit.integration.pages.ApacheProjectPage


    }
   
    @Step
    @TestsRequirement("R123-2")
    public void clickOnCategories() throws WrongPageError {
        ApacheProjectPage page = (ApacheProjectPage) getPages().currentPageAt(ApacheProjectPage.class);
        page.clickOnCategories();
    }
View Full Code Here


        page.clickOnCategories();
    }

    @Step
    public void clickOnInexistantLink() throws WrongPageError {
        ApacheProjectPage page = (ApacheProjectPage) getPages().currentPageAt(ApacheProjectPage.class);
        page.clickOnCategories();
    }
View Full Code Here

        page.clickOnCategories();
    }

    @Step
    public void clickOnProjectAndCheckTitle() throws WrongPageError {
        ApacheProjectPage page = (ApacheProjectPage) getPages().currentPageAt(ApacheProjectPage.class);
        page.clickOnProjectsAndCheckTitle();
    }
View Full Code Here

TOP

Related Classes of net.thucydides.junit.integration.pages.ApacheProjectPage

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.