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.

GridRebindDataSourceV7Test.java 543B

1234567891011121314151617181920212223
  1. package com.vaadin.tests.components.grid;
  2. import com.vaadin.tests.tb3.MultiBrowserTest;
  3. import org.junit.Test;
  4. import org.openqa.selenium.By;
  5. public class GridRebindDataSourceV7Test extends MultiBrowserTest {
  6. @Override
  7. public void setup() throws Exception {
  8. super.setup();
  9. setDebug(true);
  10. openTestURL();
  11. waitForElementPresent(By.className("v-grid"));
  12. }
  13. @Test
  14. public void testNoNPE() {
  15. findElement(By.id("changeContainer")).click();
  16. assertNoErrorNotifications();
  17. }
  18. }