blob: a7d742681dce038a3c2096348d61186be6ff2b3a (
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
83
84
85
86
87
88
89
90
|
package com.vaadin.tests.components.combobox;
import static org.hamcrest.CoreMatchers.is;
import static org.hamcrest.MatcherAssert.assertThat;
import java.util.List;
import org.junit.Test;
import org.openqa.selenium.Keys;
import org.openqa.selenium.WebDriver;
import org.openqa.selenium.WebElement;
import org.openqa.selenium.interactions.Actions;
import org.openqa.selenium.support.ui.ExpectedCondition;
import com.vaadin.testbench.By;
import com.vaadin.testbench.elements.ComboBoxElement;
import com.vaadin.testbench.elements.LabelElement;
import com.vaadin.testbench.parallel.BrowserUtil;
import com.vaadin.tests.tb3.MultiBrowserTest;
public class ComboBoxMouseSelectEnterTest extends MultiBrowserTest {
private ComboBoxElement comboBoxElement;
@Override
public void setup() throws Exception {
super.setup();
openTestURL();
waitForElementPresent(By.className("v-filterselect"));
comboBoxElement = $(ComboBoxElement.class).first();
}
@Test
public void enterSetsValueSelectedByMouseOver() {
comboBoxElement.openPopup();
comboBoxElement.sendKeys(Keys.DOWN, Keys.DOWN);
String selectedItemText = findElement(
By.className("gwt-MenuItem-selected")).getText();
assertThat("Item selected by arrows should be a1", selectedItemText,
is("a1"));
new Actions(driver).moveToElement(getWebElementForItem("a5")).build()
.perform();
comboBoxElement.sendKeys(getReturn());
assertThat("Item selected by mouse should be a5",
comboBoxElement.getText(), is("a5"));
checkLabelValue("a5");
}
private WebElement getWebElementForItem(String wantedText) {
WebElement wantedItem = null;
List<WebElement> items = findElements(By.className("gwt-MenuItem"));
for (WebElement item : items) {
if (item.getText().equals(wantedText)) {
wantedItem = item;
break;
}
}
return wantedItem;
}
private Keys getReturn() {
if (BrowserUtil.isPhantomJS(getDesiredCapabilities())) {
return Keys.ENTER;
} else {
return Keys.RETURN;
}
}
private void checkLabelValue(final String expectedValue) {
waitUntil(new ExpectedCondition<Boolean>() {
private String actualValue;
@Override
public Boolean apply(WebDriver input) {
actualValue = $(LabelElement.class).id("value").getText();
return actualValue.equals(expectedValue);
}
@Override
public String toString() {
// Timed out after 10 seconds waiting for ...
return String.format("Label value to match '%s' (was: '%s')",
expectedValue, actualValue);
}
});
}
}
|