Package org.encuestame.selenium.pages

Examples of org.encuestame.selenium.pages.SetupPage


    @Test
    public void testInitialLogin() throws Exception {
        // create new user and first blog
        driver.get(baseUrl);
        final SetupPage setup = new SetupPage(driver);
        setup.initStep1();
        setup.initStep2();
        setup.initStep3();
        setup.initStep4("test_user", "demo@encuestame.org", "demo@encuestame.org", "12345678", "12345678");
        setup.initStep5();
        setup.initStep6();
        assertEquals(true, true);
    }
View Full Code Here

TOP

Related Classes of org.encuestame.selenium.pages.SetupPage

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.