]> source.dussan.org Git - vaadin-framework.git/blob
39854ab8bd1173f149efa95332a6a05e2491074d
[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.escalator;
17
18 import static org.junit.Assert.assertTrue;
19
20 import java.io.IOException;
21
22 import org.junit.Test;
23 import org.openqa.selenium.By;
24
25 import com.vaadin.tests.components.grid.basicfeatures.EscalatorBasicClientFeaturesTest;
26
27 /**
28  * Test class to test the escalator level issue for ticket #16832
29  */
30 public class EscalatorRemoveAndAddRowsTest
31         extends EscalatorBasicClientFeaturesTest {
32
33     @Test
34     public void testRemoveAllRowsAndAddThirtyThenScroll() throws IOException {
35         openTestURL();
36
37         selectMenuPath(GENERAL, POPULATE_COLUMN_ROW);
38
39         scrollVerticallyTo(99999);
40         assertTrue("Escalator is not scrolled to bottom.",
41                 isElementPresent(By.xpath("//td[text() = 'Row 99: 0,99']")));
42
43         selectMenuPath(COLUMNS_AND_ROWS, BODY_ROWS, REMOVE_ALL_INSERT_SCROLL);
44
45         scrollVerticallyTo(99999);
46         assertTrue("Escalator is not scrolled to bottom.",
47                 isElementPresent(By.xpath("//td[text() = 'Row 29: 0,129']")));
48     }
49 }