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

import org.junit.Test;

import com.vaadin.testbench.elements.ProgressBarElement;
import com.vaadin.tests.tb3.MultiBrowserTest;

public class ProgressBarStaticRunoTest extends MultiBrowserTest {
    @Test
    public void compareScreenshot() throws Exception {
        openTestURL();
        compareScreen($(ProgressBarElement.class).first(), "screen");
    }
}