blob: 003c659d9b9f9b065a740088965cc833143af75c (
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
|
package com.vaadin.tests.elements.combobox;
import static org.junit.Assert.assertEquals;
import org.junit.Ignore;
import org.junit.Test;
import com.vaadin.testbench.elements.ComboBoxElement;
import com.vaadin.testbench.elements.LabelElement;
import com.vaadin.tests.tb3.MultiBrowserTest;
public class ComboBoxInputNotAllowedTest extends MultiBrowserTest {
@Test
@Ignore("Build got stuck on this, so temporarily disabled")
public void selectByTextComboBoxWithTextInputDisabled_invalidSelection() {
openTestURL();
ComboBoxElement cb = $(ComboBoxElement.class).first();
cb.selectByText("Foobar");
}
@Test
public void selectByTextComboBoxWithTextInputDisabled() {
openTestURL();
ComboBoxElement cb = $(ComboBoxElement.class).first();
String[] optionsToTest = { ComboBoxInputNotAllowed.ITEM_ON_FIRST_PAGE,
ComboBoxInputNotAllowed.ITEM_ON_SECOND_PAGE,
ComboBoxInputNotAllowed.ITEM_ON_LAST_PAGE,
ComboBoxInputNotAllowed.ITEM_LAST_WITH_PARENTHESIS,
ComboBoxInputNotAllowed.ITEM_ON_FIRST_PAGE };
for (String option : optionsToTest) {
cb.selectByText(option);
assertEquals("Value is now: " + option,
$(LabelElement.class).last().getText());
assertEquals(option, cb.getValue());
}
}
}
|