blob: b04fca1a0eb31e83245ba326f3804af22271d58a (
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
|
package com.vaadin.tests.components.combobox;
import static org.hamcrest.MatcherAssert.assertThat;
import static org.hamcrest.Matchers.is;
import org.junit.Test;
import org.openqa.selenium.By;
import org.openqa.selenium.Dimension;
import org.openqa.selenium.WebDriver.Window;
import org.openqa.selenium.WebElement;
import com.vaadin.testbench.elements.ComboBoxElement;
import com.vaadin.tests.tb3.MultiBrowserTest;
import com.vaadin.v7.client.ui.VFilterSelect;
/**
* ComboBox suggestion popup should not obscure the text input box.
*
* @author Vaadin Ltd
*/
public class ComboBoxOnSmallScreenTest extends MultiBrowserTest {
private static final Dimension TARGETSIZE = new Dimension(600, 300);
private static final String POPUPCLASSNAME = VFilterSelect.CLASSNAME
+ "-suggestpopup";
ComboBoxElement combobox;
WebElement popup;
@Override
public void setup() throws Exception {
super.setup();
openTestURL();
getWindow().setSize(TARGETSIZE);
combobox = $(ComboBoxElement.class).first();
combobox.openPopup();
popup = findElement(By.className(POPUPCLASSNAME));
}
@Test
public void testSuggestionPopupOverlayPosition() {
final int popupTop = popup.getLocation().y;
final int popupBottom = popupTop + popup.getSize().getHeight();
final int cbTop = combobox.getLocation().y;
final int cbBottom = cbTop + combobox.getSize().getHeight();
assertThat("Popup overlay overlaps with the textbox",
popupTop >= cbBottom || popupBottom <= cbTop, is(true));
}
@Test
public void testSuggestionPopupOverlaySize() {
final int popupTop = popup.getLocation().y;
final int popupBottom = popupTop + popup.getSize().getHeight();
final int rootHeight = findElement(By.tagName("body")).getSize().height;
assertThat("Popup overlay out of the screen",
popupTop < 0 || popupBottom > rootHeight, is(false));
}
private Window getWindow() {
return getDriver().manage().window();
}
}
|