aboutsummaryrefslogtreecommitdiffstats
path: root/uitest/src/test/java/com/vaadin/tests/elements/ElementComponentGetCaptionFormLayoutTest.java
blob: f3f85bdd718055fa857ef7f438279bcfcb1e04d1 (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.FormLayoutElement;

public class ElementComponentGetCaptionFormLayoutTest
        extends ElementComponentGetCaptionBaseTest {
    @Override
    protected Class<?> getUIClass() {
        return ElementComponentGetCaptionFormLayout.class;
    }

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