Package org.springframework.springfaces.traveladvisor.integrationtest.page.selectitems

Examples of org.springframework.springfaces.traveladvisor.integrationtest.page.selectitems.SelectOneBooleanSelectItemsPage.selectSecondOption()


    assertThat(selectOptions.get(1).getText(), is("Yes"));
    assertThat(selectOptions.get(2).getValue(), is("false"));
    assertThat(selectOptions.get(2).getSelected(), is(nullValue()));
    assertThat(selectOptions.get(2).getText(), is("No"));

    page.selectSecondOption();

    page = (SelectOneBooleanSelectItemsPage) page.clickSubmitButton();

    selectOptions = page.getSelectOptions();
    assertThat(selectOptions.size(), is(3));
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.