/* * JBoss, Home of Professional Open Source * Copyright 2010-2014, Red Hat, Inc. and individual contributors * by the @authors tag. See the copyright.txt in the distribution for a * full listing of individual contributors. * * This is free software; you can redistribute it and/or modify it * under the terms of the GNU Lesser General Public License as * published by the Free Software Foundation; either version 2.1 of * the License, or (at your option) any later version. * * This software is distributed in the hope that it will be useful, * but WITHOUT ANY WARRANTY; without even the implied warranty of * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU * Lesser General Public License for more details. * * You should have received a copy of the GNU Lesser General Public * License along with this software; if not, write to the Free * Software Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA * 02110-1301 USA, or see the FSF site: http://www.fsf.org. */ package org.richfaces.showcase.collapsiblePanel; import static org.jboss.arquillian.graphene.Graphene.guardAjax; import org.jboss.arquillian.graphene.Graphene; import org.jboss.arquillian.graphene.page.Page; import org.junit.Test; import org.richfaces.showcase.collapsiblePanel.page.SimplePage; import org.richfaces.showcase.panel.AbstractPanelTest; /** * @author <a href="mailto:jhuska@redhat.com">Juraj Huska</a> */ public class ITestSimple extends AbstractPanelTest { @Page private SimplePage page; @Test public void testCollapseAndShowPanels() { if (!page.getFirstPanelContent().isDisplayed()) { page.getFirstPanel().click(); } checkContentOfPanel(page.getFirstPanelContent(), RICH_FACES_INFO); page.getFirstPanel().click();// close guardAjax(page.getSecondPanel()).click();// open Graphene.waitAjax(webDriver) .withMessage("The content of the first panel should not be visible, since the panel is collapsed!") .until().element(page.getFirstPanelContent()).is().not().visible(); Graphene.waitAjax(webDriver).until().element(page.getSecondPanelContent()).is().visible(); checkContentOfPanel(page.getSecondPanelContent(), RICH_FACES_JSF_INFO); guardAjax(page.getSecondPanel()).click();// close page.getFirstPanel().click();// open Graphene.waitAjax(webDriver) .withMessage("The content of the second panel should not be visible, since the panel is collapsed!") .until().element(page.getSecondPanelContent()).is().not().visible(); Graphene.waitGui(webDriver).until().element(page.getFirstPanelContent()).is().visible(); checkContentOfPanel(page.getFirstPanelContent(), RICH_FACES_INFO); } }