blob: dd3e26e170d5b908f8db0c99b99b54ff53b887d7 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
|
package com.vaadin.tests.components.radiobuttongroup;
import static org.junit.Assert.assertFalse;
import static org.junit.Assert.assertTrue;
import java.util.List;
import org.junit.Test;
import org.openqa.selenium.By;
import org.openqa.selenium.Keys;
import org.openqa.selenium.WebElement;
import org.openqa.selenium.interactions.Actions;
import org.openqa.selenium.remote.DesiredCapabilities;
import com.vaadin.testbench.elements.LabelElement;
import com.vaadin.testbench.elements.RadioButtonGroupElement;
import com.vaadin.tests.tb3.MultiBrowserTest;
/**
* @author Vaadin Ltd
*
*/
public class RadioButtonGroupFocusBlurTest extends MultiBrowserTest {
@Test
public void focusBlurEvents() {
openTestURL();
RadioButtonGroupElement radioButtonGroup = $(
RadioButtonGroupElement.class).first();
List<WebElement> radioButtons = radioButtonGroup
.findElements(By.tagName("input"));
radioButtonGroup.selectByText("1");
// Focus event is fired
assertTrue(logContainsText("1. Focus Event"));
radioButtonGroup.selectByText("2");
// click on the second radio button doesn't fire anything
assertFalse(logContainsText("2."));
// move the cursor to the middle of the first element,
// offset to the middle of the two and perform click
new Actions(getDriver()).moveToElement(radioButtons.get(0))
.moveByOffset(0,
(radioButtons.get(1).getLocation().y
- radioButtons.get(0).getLocation().y) / 2)
.click().build().perform();
// no new events
assertFalse(logContainsText("2."));
// click to label of a radio button
radioButtonGroup.findElements(By.tagName("label")).get(2).click();
// no new events
assertFalse(logContainsText("2."));
// click on log label => blur
$(LabelElement.class).first().click();
// blur event is fired
assertTrue(logContainsText("2. Blur Event"));
radioButtonGroup.selectByText("4");
// Focus event is fired
assertTrue(logContainsText("3. Focus Event"));
// move keyboard focus to the next radio button
radioButtons.get(3).sendKeys(Keys.ARROW_DOWN);
// no new events
assertFalse(logContainsText("4."));
// select the next radio button
radioButtons.get(4).sendKeys(Keys.TAB);
// focus has gone away
waitUntil(driver -> logContainsText("4. Blur Event"), 5);
}
@Override
public List<DesiredCapabilities> getBrowsersToTest() {
// Focus does not move when expected with Selenium/TB and Firefox 45
return getBrowsersExcludingFirefox();
}
}
|