]> source.dussan.org Git - vaadin-framework.git/blob
d0d9bcbe3da4c2303db79df23b8a2fc290619d4a
[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.v7.tests.components.nativeselect;
17
18 import org.junit.Assert;
19 import org.junit.Test;
20 import org.openqa.selenium.By;
21 import org.openqa.selenium.interactions.Actions;
22
23 import com.vaadin.testbench.parallel.BrowserUtil;
24 import com.vaadin.tests.components.nativeselect.NativeSelects;
25 import com.vaadin.tests.tb3.MultiBrowserTest;
26 import com.vaadin.v7.testbench.customelements.NativeSelectElement;
27
28 public class NativeSelectsFocusAndBlurListenerTests extends MultiBrowserTest {
29
30     @Test
31     public void testFocusAndBlurListener() throws InterruptedException {
32         setDebug(true);
33         openTestURL();
34         Thread.sleep(200);
35         menu("Component");
36         menuSub("Listeners");
37         menuSub("Focus listener");
38         menu("Component");
39         menuSub("Listeners");
40         menuSub("Blur listener");
41
42         findElement(By.tagName("body")).click();
43
44         NativeSelectElement s = $(NativeSelectElement.class).first();
45         s.selectByText("Item 3");
46         getDriver().findElement(By.tagName("body")).click();
47
48         // Somehow selectByText causes focus + blur + focus + blur on
49         // Chrome/PhantomJS
50         if (BrowserUtil.isChrome(getDesiredCapabilities())
51                 || BrowserUtil.isPhantomJS(getDesiredCapabilities())) {
52             Assert.assertEquals("4. FocusEvent", getLogRow(1));
53             Assert.assertEquals("5. BlurEvent", getLogRow(0));
54         } else {
55             Assert.assertEquals("2. FocusEvent", getLogRow(1));
56             Assert.assertEquals("3. BlurEvent", getLogRow(0));
57         }
58
59     }
60
61     @Override
62     protected Class<?> getUIClass() {
63         return NativeSelects.class;
64     }
65
66     private void menuSub(String string) {
67         getDriver().findElement(By.xpath("//span[text() = '" + string + "']"))
68                 .click();
69         new Actions(getDriver()).moveByOffset(100, 0).build().perform();
70     }
71
72     private void menu(String string) {
73         getDriver().findElement(By.xpath("//span[text() = '" + string + "']"))
74                 .click();
75
76     }
77
78 }