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.

TableVisibleColumnsUpdateTest.java 642B

12345678910111213141516171819202122232425262728293031
  1. package com.vaadin.tests.components.table;
  2. import java.io.IOException;
  3. import org.junit.Test;
  4. import com.vaadin.testbench.elements.ButtonElement;
  5. import com.vaadin.tests.tb3.MultiBrowserTest;
  6. public class TableVisibleColumnsUpdateTest extends MultiBrowserTest {
  7. @Test
  8. public void testFooter() throws IOException {
  9. openTestURL();
  10. compareScreen("first");
  11. $(ButtonElement.class).first().click();
  12. compareScreen("second");
  13. $(ButtonElement.class).first().click();
  14. compareScreen("first2");
  15. $(ButtonElement.class).first().click();
  16. compareScreen("second2");
  17. }
  18. }