]> source.dussan.org Git - vaadin-framework.git/blob
a73de13b15a55b003eb17a7e515689c64bba8664
[vaadin-framework.git] /
1 /*
2  * Copyright 2000-2016 Vaadin Ltd.
3  *
4  * Licensed under the Apache License, Version 2.0 (the "License"); you may not
5  * use this file except in compliance with the License. You may obtain a copy of
6  * the License at
7  *
8  * http://www.apache.org/licenses/LICENSE-2.0
9  *
10  * Unless required by applicable law or agreed to in writing, software
11  * distributed under the License is distributed on an "AS IS" BASIS, WITHOUT
12  * WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. See the
13  * License for the specific language governing permissions and limitations under
14  * the License.
15  */
16 package com.vaadin.tests.components.grid.basicfeatures;
17
18 import static org.junit.Assert.assertEquals;
19 import static org.junit.Assert.assertTrue;
20
21 import java.util.List;
22
23 import org.junit.Test;
24 import org.openqa.selenium.By;
25 import org.openqa.selenium.remote.DesiredCapabilities;
26
27 public class GridDescriptionGeneratorTest extends GridBasicFeaturesTest {
28
29     @Test
30     public void testCellDescription() {
31         openTestURL();
32         selectMenuPath("Component", "State", "Cell description generator");
33
34         getGridElement().getCell(1, 0).showTooltip();
35         String tooltipText = findElement(By.className("v-tooltip-text"))
36                 .getText();
37         assertEquals("Tooltip text", "Cell tooltip for row 1, column 0",
38                 tooltipText);
39
40         getGridElement().getCell(1, 1).showTooltip();
41         assertTrue("Tooltip should not be present in cell (1, 1) ",
42                 findElement(By.className("v-tooltip-text")).getText()
43                         .isEmpty());
44     }
45
46     @Test
47     public void testRowDescription() {
48         openTestURL();
49         selectMenuPath("Component", "State", "Row description generator");
50
51         getGridElement().getCell(5, 3).showTooltip();
52         String tooltipText = findElement(By.className("v-tooltip-text"))
53                 .getText();
54         assertEquals("Tooltip text", "Row tooltip for row 5", tooltipText);
55
56         getGridElement().getCell(15, 3).showTooltip();
57         tooltipText = findElement(By.className("v-tooltip-text")).getText();
58         assertEquals("Tooltip text", "Row tooltip for row 15", tooltipText);
59     }
60
61     @Test
62     public void testRowAndCellDescription() {
63         openTestURL();
64         selectMenuPath("Component", "State", "Row description generator");
65         selectMenuPath("Component", "State", "Cell description generator");
66
67         getGridElement().getCell(5, 0).showTooltip();
68         String tooltipText = findElement(By.className("v-tooltip-text"))
69                 .getText();
70         assertEquals("Tooltip text", "Cell tooltip for row 5, column 0",
71                 tooltipText);
72
73         getGridElement().getCell(5, 3).showTooltip();
74         tooltipText = findElement(By.className("v-tooltip-text")).getText();
75         assertEquals("Tooltip text", "Row tooltip for row 5", tooltipText);
76     }
77
78     @Override
79     public List<DesiredCapabilities> getBrowsersToTest() {
80         return getBrowsersExcludingFirefox();
81     }
82
83 }