aboutsummaryrefslogtreecommitdiffstats
path: root/uitest/src/test/java/com/vaadin/tests/elements/CompatibilityElementComponentGetCaptionCssLayoutTest.java
blob: 804a2ba3b9adab60f7c6894099b3ec77e3586d92 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
package com.vaadin.tests.elements;

import com.vaadin.testbench.elements.CssLayoutElement;

public class CompatibilityElementComponentGetCaptionCssLayoutTest
        extends CompatibilityElementComponentGetCaptionBaseTest {
    @Override
    protected Class<?> getUIClass() {
        return CompatibilityElementComponentGetCaptionCssLayout.class;
    }

    @Override
    protected void openTestURL() {
        super.openTestURL();
        mainLayout = $(CssLayoutElement.class).get(0);
    }
}