blob: 16f23c6c952a8576bf7a532c5474f84115b66a76 (
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
|
package com.vaadin.tests.components.combobox;
import org.junit.Test;
import org.openqa.selenium.WebElement;
import com.vaadin.testbench.By;
import com.vaadin.testbench.elements.ComboBoxElement;
import com.vaadin.tests.tb3.MultiBrowserTest;
/**
* @author Vaadin Ltd
*/
public class ComboBoxSuggestionPopupWidthLegacyTest extends MultiBrowserTest {
@Test
public void suggestionPopupLegacyWidthTest() throws Exception {
openTestURL();
waitForElementVisible(By.className("legacy"));
WebElement selectTextbox = $(ComboBoxElement.class).first()
.findElement(By.vaadin("#textbox"));
selectTextbox.click();
ComboBoxElement cb = $(ComboBoxElement.class).first();
cb.openPopup();
WebElement popup = cb.getSuggestionPopup();
int width = popup.getSize().getWidth();
assertGreater("Legacy mode popup should be quite wide", width, 600);
assertLessThan(
"Even legacy mode popup should not be over 1000px wide with the set item captions ",
width, 1000);
}
};
|