public class PopupLayerTest extends OpenFacesTestCase {
@Test
public void testReRenderThroughA4J() {
testAppFunctionalPage("/components/popuplayer/popupLayer_a4j.jsf");
PopupLayerInspector popupLayer = popupLayer("formID:popupLayerID");
popupLayer.assertElementExists();
popupLayer.assertVisible(false);
element("formID:buttonID").click();
String oldValue = popupLayer.text();
popupLayer.assertVisible(true);
element("formID:popupCloser").click();