Examples of clickPostbackButton()


Examples of org.springframework.springfaces.traveladvisor.integrationtest.page.requestmapping.PostbackRequestMappingPage.clickPostbackButton()

  public void shouldSupportPostbackWithRequestMapping() throws Exception {
    PostbackRequestMappingPage page = this.pages.get(PostbackRequestMappingPage.class);
    assertThat(page.getCreateDate(), is(not(0L)));
    long date1 = page.getDate();
    Thread.sleep(500);
    page = page.clickPostbackButton();
    assertThat(page.getCreateDate(), is(0L));
    long date2 = page.getDate();
    assertTrue(date1 < date2);
  }
}
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.