aboutsummaryrefslogtreecommitdiffstats
path: root/uitest/src/test/java/com/vaadin/tests/components/panel/PanelHTMLCaptionTest.java
blob: 519ed0f5495086c8a80631871e579bff4e6f16ef (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
package com.vaadin.tests.components.panel;

import com.vaadin.tests.tb3.MultiBrowserTest;
import org.junit.Test;
import org.openqa.selenium.By;

public class PanelHTMLCaptionTest extends MultiBrowserTest {
    @Test
    public void testCaptionDisplayedAsText() {
        openTestURL();
        assertElementNotPresent(By.id("divId"));
        findElement(By.id("buttonId")).click();
        assertElementPresent(By.id("divId"));
    }
}