blob: f693812c3e7dff9b989e9e6f1f21bd22556861ac (
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
|
package com.vaadin.tests.components.combobox;
import static org.junit.Assert.assertEquals;
import org.junit.Test;
import com.vaadin.testbench.elements.ComboBoxElement;
import com.vaadin.testbench.elements.ButtonElement;
import com.vaadin.tests.tb3.MultiBrowserTest;
/**
* Tests that changing a stylename will not cause the width parameter to be
* removed from a combobox.
*
* @author Vaadin Ltd
*/
public class ComboboxStyleChangeWidthTest extends MultiBrowserTest {
@Test
public void testWidthRetained() {
openTestURL();
ComboBoxElement comboBox = $(ComboBoxElement.class).first();
String oldStyle = comboBox.getAttribute("style");
ButtonElement button = $(ButtonElement.class).first();
button.click();
String newStyle = comboBox.getAttribute("style");
assertEquals("width has changed, should remain equal", oldStyle,
newStyle);
}
}
|