You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

PanelHTMLCaptionTest.java 437B

123456789101112131415
  1. package com.vaadin.tests.components.panel;
  2. import com.vaadin.tests.tb3.MultiBrowserTest;
  3. import org.junit.Test;
  4. import org.openqa.selenium.By;
  5. public class PanelHTMLCaptionTest extends MultiBrowserTest {
  6. @Test
  7. public void testCaptionDisplayedAsText() {
  8. openTestURL();
  9. assertElementNotPresent(By.id("divId"));
  10. findElement(By.id("buttonId")).click();
  11. assertElementPresent(By.id("divId"));
  12. }
  13. }