aboutsummaryrefslogtreecommitdiffstats
path: root/uitest/src/test/java/com/vaadin/tests/focusable/NativeSelectFocusableTest.java
blob: 530972b8a69d61924842b7890211793ed46d06e4 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
package com.vaadin.tests.focusable;

import org.openqa.selenium.WebElement;

import com.vaadin.testbench.By;
import com.vaadin.tests.components.nativeselect.NativeSelects;

public class NativeSelectFocusableTest extends AbstractFocusableComponentTest {

    @Override
    protected Class<?> getUIClass() {
        return NativeSelects.class;
    }

    @Override
    protected WebElement getFocusElement() {
        return findElement(By.className("v-select-select"));
    }
}