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
83
|
package com.vaadin.tests.components.grid;
import static org.junit.Assert.assertEquals;
import java.util.List;
import org.junit.Test;
import org.openqa.selenium.By;
import org.openqa.selenium.WebElement;
import com.vaadin.testbench.elements.ButtonElement;
import com.vaadin.testbench.elements.GridElement;
import com.vaadin.testbench.parallel.TestCategory;
import com.vaadin.tests.tb3.MultiBrowserTest;
@TestCategory("grid")
public class GridDetailsDetachTest extends MultiBrowserTest {
@Test
public void testDetachGridWithDetailsOpen() {
setDebug(true);
openTestURL();
$(GridElement.class).first().getCell(3, 0).click();
$(GridElement.class).first().getCell(5, 0).click();
assertNoErrorNotifications();
$(ButtonElement.class).first().click();
assertNoErrorNotifications();
}
@Test
public void testDetachAndReattachGridWithDetailsOpen() {
setDebug(true);
openTestURL();
$(GridElement.class).first().getCell(1, 0).click();
$(GridElement.class).first().getCell(3, 0).click();
assertNoErrorNotifications();
$(ButtonElement.class).first().click();
assertNoErrorNotifications();
$(ButtonElement.class).get(1).click();
assertNoErrorNotifications();
List<WebElement> spacers = findElements(By.className("v-grid-spacer"));
assertEquals("Not enough spacers in DOM", 2, spacers.size());
assertEquals("Spacer content not visible", "Extra data for Bean 1",
spacers.get(0).getText());
assertEquals("Spacer content not visible", "Extra data for Bean 3",
spacers.get(1).getText());
}
@Test
public void testDetachAndImmediateReattach() {
setDebug(true);
openTestURL();
$(GridElement.class).first().getCell(1, 0).click();
$(GridElement.class).first().getCell(3, 0).click();
assertNoErrorNotifications();
// Detach and Re-attach Grid
$(ButtonElement.class).get(1).click();
assertNoErrorNotifications();
List<WebElement> spacers = findElements(By.className("v-grid-spacer"));
assertEquals("Not enough spacers in DOM", 2, spacers.size());
assertEquals("Spacer content not visible", "Extra data for Bean 1",
spacers.get(0).getText());
assertEquals("Spacer content not visible", "Extra data for Bean 3",
spacers.get(1).getText());
}
}
|