blob: 090c559e254f4dbac9fd5bf40661b079bd9b88f5 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
|
package com.vaadin.tests.focusable;
import org.openqa.selenium.By;
import org.openqa.selenium.WebElement;
import com.vaadin.tests.components.radiobutton.RadioButtonGroupTestUI;
public class RadioButtonGroupFocusableTest
extends AbstractFocusableComponentTest {
@Override
protected Class<?> getUIClass() {
return RadioButtonGroupTestUI.class;
}
@Override
protected WebElement getFocusElement() {
return findElement(By.xpath("//input[@type='radio']"));
}
}
|