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

Examples of org.springframework.springfaces.traveladvisor.integrationtest.page.selectitems.SelectManyStringSelectItemsPage.clickSubmitButton()


    assertThat(selectOptions.get(1).getSelected(), is(nullValue()));
    assertThat(selectOptions.get(1).getText(), is("Web Flow"));

    page.selectSecondOption();

    page = (SelectManyStringSelectItemsPage) page.clickSubmitButton();

    selectOptions = page.getSelectOptions();
    assertThat(selectOptions.size(), is(4));
    assertThat(selectOptions.get(0).getSelected(), is(nullValue()));
    assertThat(selectOptions.get(1).getSelected(), is("true"));
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.