Package com.google.sitebricks.acceptance

Source Code of com.google.sitebricks.acceptance.EmbedAcceptanceTest

package com.google.sitebricks.acceptance;

import com.google.sitebricks.acceptance.page.EmbedPage;
import com.google.sitebricks.acceptance.util.AcceptanceTest;
import org.openqa.selenium.WebDriver;
import org.testng.annotations.Test;

/**
* @author Dhanji R. Prasanna (dhanji@gmail.com)
*/
@Test(suiteName = AcceptanceTest.SUITE)
public class EmbedAcceptanceTest {

  public void shouldRenderHelloWorldEmbeddedWithRequires() {
    WebDriver driver = AcceptanceTest.createWebDriver();
    EmbedPage page = EmbedPage.open(driver);

    assert page.hasCssLink() : "Did not contain require widget (css link) from embedded page";
    assert page.hasHelloWorldMessage() : "Did not contain hellow world message";
  }
}
TOP

Related Classes of com.google.sitebricks.acceptance.EmbedAcceptanceTest

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.