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