blob: 3c090197af85593cd524fd54cbf44405fbbbc68c (
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.GridLayoutElement;
public class CompatibilityElementComponentGetCaptionGridLayoutTest
extends CompatibilityElementComponentGetCaptionBaseTest {
@Override
protected Class<?> getUIClass() {
return CompatibilityElementComponentGetCaptionGridLayout.class;
}
@Override
protected void openTestURL() {
super.openTestURL();
mainLayout = $(GridLayoutElement.class).get(0);
}
}
|