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
|
package com.vaadin.tests.components.table;
import static org.junit.Assert.assertEquals;
import java.io.IOException;
import java.util.List;
import org.junit.Test;
import org.openqa.selenium.By;
import org.openqa.selenium.WebElement;
import org.openqa.selenium.interactions.Actions;
import com.vaadin.testbench.TestBenchElement;
import com.vaadin.testbench.elements.TableElement;
import com.vaadin.tests.tb3.MultiBrowserTest;
/**
* Tests that editing and selecting work correctly.
*
* @author Vaadin Ltd
*/
public class EditableModeChangeTest extends MultiBrowserTest {
@Test
public void testNotification() throws IOException, InterruptedException {
openTestURL();
TableElement table = $(TableElement.class).first();
// check original value
TestBenchElement cell_1_0 = table.getCell(1, 0);
assertEquals(
"original value not found, wrong cell or contents (1st column of the 2nd row expected)",
"Teppo", cell_1_0.getText());
// double-click to edit cell contents
cell_1_0.click();
new Actions(getDriver()).doubleClick(cell_1_0).build().perform();
sleep(100);
// fetch the updated cell
WebElement textField = table.getCell(1, 0)
.findElement(By.className("v-textfield"));
assertEquals(
"original value not found, wrong cell or contents (1st column of the 2nd row expected)",
"Teppo", textField.getAttribute("value"));
// update value
textField.clear();
textField.sendKeys("baa");
// click on another row
table.getCell(0, 1).click();
// check the value got updated correctly
assertEquals(
"updated value not found, wrong cell or contents (1st column of the 2nd row expected)",
"baa", table.getCell(1, 0).getText());
// check that selection got updated correctly
List<WebElement> selected = table
.findElement(By.className("v-table-body"))
.findElements(By.className("v-selected"));
assertEquals(1, selected.size());
WebElement content = selected.get(0)
.findElement(By.className("v-table-cell-wrapper"));
assertEquals(
"expected value not found, wrong cell or contents (1st column of the 1st row expected)",
"Teemu", content.getText());
compareScreen("selection");
}
}
|