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.

ProgressBarStaticRunoTest.java 416B

1234567891011121314
  1. package com.vaadin.tests.components.progressindicator;
  2. import org.junit.Test;
  3. import com.vaadin.testbench.elements.ProgressBarElement;
  4. import com.vaadin.tests.tb3.MultiBrowserTest;
  5. public class ProgressBarStaticRunoTest extends MultiBrowserTest {
  6. @Test
  7. public void compareScreenshot() throws Exception {
  8. openTestURL();
  9. compareScreen($(ProgressBarElement.class).first(), "screen");
  10. }
  11. }