]> source.dussan.org Git - vaadin-framework.git/blob
d3bece6a7341728462f1f62cc027251c3f7ae0d6
[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.nativeselect;
17
18 import java.util.List;
19
20 import org.junit.Assert;
21 import org.junit.Test;
22 import org.openqa.selenium.By;
23 import org.openqa.selenium.Keys;
24 import org.openqa.selenium.WebElement;
25 import org.openqa.selenium.interactions.Actions;
26 import org.openqa.selenium.remote.DesiredCapabilities;
27
28 import com.vaadin.testbench.parallel.Browser;
29 import com.vaadin.tests.tb3.MultiBrowserTest;
30
31 public class NativeSelectsAndChromeKeyboardNavigationTest
32         extends MultiBrowserTest {
33
34     @Override
35     public List<DesiredCapabilities> getBrowsersToTest() {
36         return getBrowserCapabilities(Browser.CHROME);
37     }
38
39     @Test
40     public void testValueChangeListenerWithKeyboardNavigation()
41             throws InterruptedException {
42         setDebug(true);
43         openTestURL();
44         Thread.sleep(1000);
45         menu("Component");
46         menuSub("Listeners");
47         menuSub("Value change listener");
48
49         getDriver().findElement(By.tagName("body")).click();
50
51         WebElement select = getDriver().findElement(By.tagName("select"));
52         select.sendKeys(Keys.ARROW_DOWN);
53         select.sendKeys(Keys.ARROW_DOWN);
54         select.sendKeys(Keys.ARROW_DOWN);
55
56         String bodytext = getDriver().findElement(By.tagName("body")).getText();
57
58         Assert.assertTrue(bodytext.contains("new value: 'Item 1'"));
59         Assert.assertTrue(bodytext.contains("new value: 'Item 2'"));
60         Assert.assertTrue(bodytext.contains("new value: 'Item 3'"));
61
62     }
63
64     @Override
65     protected Class<?> getUIClass() {
66         return NativeSelects.class;
67     }
68
69     private void menuSub(String string) {
70         getDriver().findElement(By.xpath("//span[text() = '" + string + "']"))
71                 .click();
72         new Actions(getDriver()).moveByOffset(100, 0).build().perform();
73     }
74
75     private void menu(String string) {
76         getDriver().findElement(By.xpath("//span[text() = '" + string + "']"))
77                 .click();
78
79     }
80
81 }