Examples of CasePage


Examples of com.google.sitebricks.acceptance.page.CasePage

*/
@Test(suiteName = AcceptanceTest.SUITE)
public class CaseAcceptanceTest {
    public void shouldDisplayGreenFromCaseStatement() {
        WebDriver driver = AcceptanceTest.createWebDriver();
        CasePage page = CasePage.open(driver);

        assert "Green".equals(page.getDisplayedColor()) : "expected color wasn't displayed";
    }
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.