Search in sources :

Example 1 with AboutPage

use of io.pivotal.cla.webdriver.pages.AboutPage in project pivotal-cla by pivotalsoftware.

the class ClaControllerTests method learnMoreLink.

@Test
@WithSigningUser
public void learnMoreLink() {
    SignClaPage home = SignClaPage.go(driver, cla.getName());
    AboutPage aboutPage = home.learnMore();
    aboutPage.assertAt();
}
Also used : SignClaPage(io.pivotal.cla.webdriver.pages.SignClaPage) AboutPage(io.pivotal.cla.webdriver.pages.AboutPage) WithSigningUser(io.pivotal.cla.security.WithSigningUser) Test(org.junit.Test)

Example 2 with AboutPage

use of io.pivotal.cla.webdriver.pages.AboutPage in project pivotal-cla by pivotalsoftware.

the class HomeControllerTests method learnMoreLink.

@Test
@WithSigningUser
public void learnMoreLink() {
    SignClaPage home = HomePage.go(driver);
    AboutPage aboutPage = home.learnMore();
    aboutPage.assertAt();
}
Also used : SignClaPage(io.pivotal.cla.webdriver.pages.SignClaPage) AboutPage(io.pivotal.cla.webdriver.pages.AboutPage) WithSigningUser(io.pivotal.cla.security.WithSigningUser) Test(org.junit.Test)

Aggregations

WithSigningUser (io.pivotal.cla.security.WithSigningUser)2 AboutPage (io.pivotal.cla.webdriver.pages.AboutPage)2 SignClaPage (io.pivotal.cla.webdriver.pages.SignClaPage)2 Test (org.junit.Test)2