blob: ae870728547571165f037460f8b6f21eff2dc32f (
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.datefield;
import java.io.IOException;
import org.junit.Test;
import org.openqa.selenium.By;
import org.openqa.selenium.WebDriver;
import org.openqa.selenium.WebElement;
import org.openqa.selenium.interactions.Actions;
import org.openqa.selenium.support.ui.ExpectedCondition;
import org.openqa.selenium.support.ui.ExpectedConditions;
import com.vaadin.testbench.elements.AbstractDateFieldElement;
import com.vaadin.tests.tb3.MultiBrowserTest;
public class DateFieldPopupClosingTest extends MultiBrowserTest {
@Test
public void testDateFieldPopupClosingLongClick()
throws InterruptedException, IOException {
openTestURL();
fastClickDateDatePickerButton();
assertThatPopupIsVisible();
longClickDateDatePickerButton();
assertThatPopupIsInvisible();
}
private void assertThatPopupIsVisible() {
waitUntil(ExpectedConditions
.visibilityOfElementLocated(By.className("v-datefield-popup")));
}
private void assertThatPopupIsInvisible() {
// ExpectedConditions.invisibilityOfElementLocated doesn't work
// with PhantomJS when running with a hub:
// https://code.google.com/p/selenium/issues/detail?id=5000
// so we need to make our own.
waitUntil(new ExpectedCondition<Boolean>() {
@Override
public Boolean apply(WebDriver input) {
try {
return !(findElement(By.className("v-datefield-popup"))
.isDisplayed());
} catch (Exception e) {
return true;
}
}
@Override
public String toString() {
// Timed out after 10 seconds waiting for ...
return "popup to not be visible";
}
});
}
private void longClickDateDatePickerButton() {
WebElement button = getToggleButton();
new Actions(getDriver()).clickAndHold(button).perform();
assertThatPopupIsInvisible();
new Actions(getDriver()).release(button).perform();
}
private WebElement getToggleButton() {
AbstractDateFieldElement dateField = $(AbstractDateFieldElement.class)
.first();
return dateField.findElement(By.tagName("button"));
}
private void fastClickDateDatePickerButton() {
getToggleButton().click();
}
}
|