summaryrefslogtreecommitdiffstats
path: root/uitest
diff options
context:
space:
mode:
authorJuho Nurminen <juho@vaadin.com>2013-11-18 18:11:40 +0200
committerJuho Nurminen <juho@vaadin.com>2013-11-20 07:55:57 +0200
commit23e5683e14489c23708c067fe62e4009914f1a11 (patch)
treeb01501f3061592eadd13983057f70646ea472638 /uitest
parent012e649775e7efbcbbdd9d1c3ef4edd9c9acb71a (diff)
downloadvaadin-framework-23e5683e14489c23708c067fe62e4009914f1a11.tar.gz
vaadin-framework-23e5683e14489c23708c067fe62e4009914f1a11.zip
Fixed TabSheet keyboard navigation (#12971)
Change-Id: Ibb155946811eb43829c6c200fa83c5eaa1d7cdfa
Diffstat (limited to 'uitest')
-rw-r--r--uitest/src/com/vaadin/tests/components/tabsheet/TabsheetScrollingTest.java60
1 files changed, 60 insertions, 0 deletions
diff --git a/uitest/src/com/vaadin/tests/components/tabsheet/TabsheetScrollingTest.java b/uitest/src/com/vaadin/tests/components/tabsheet/TabsheetScrollingTest.java
new file mode 100644
index 0000000000..1670963b9b
--- /dev/null
+++ b/uitest/src/com/vaadin/tests/components/tabsheet/TabsheetScrollingTest.java
@@ -0,0 +1,60 @@
+/*
+ * Copyright 2000-2013 Vaadin Ltd.
+ *
+ * Licensed under the Apache License, Version 2.0 (the "License"); you may not
+ * use this file except in compliance with the License. You may obtain a copy of
+ * the License at
+ *
+ * http://www.apache.org/licenses/LICENSE-2.0
+ *
+ * Unless required by applicable law or agreed to in writing, software
+ * distributed under the License is distributed on an "AS IS" BASIS, WITHOUT
+ * WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. See the
+ * License for the specific language governing permissions and limitations under
+ * the License.
+ */
+package com.vaadin.tests.components.tabsheet;
+
+import org.junit.Assert;
+import org.junit.Test;
+import org.openqa.selenium.Keys;
+import org.openqa.selenium.WebElement;
+import org.openqa.selenium.interactions.Actions;
+
+import com.vaadin.testbench.By;
+import com.vaadin.tests.tb3.MultiBrowserTest;
+
+public class TabsheetScrollingTest extends MultiBrowserTest {
+
+ @Test
+ public void keyboardScrolling() {
+ openTestURL();
+ getTab(1).click();
+ for (int i = 0; i < 10; i++) {
+ sendKey(Keys.ARROW_RIGHT);
+ }
+ Assert.assertEquals("Hide this tab (21)", getHideButtonText());
+ }
+
+ private WebElement getTab(int index) {
+ return getDriver().findElement(
+ By.vaadin("/VVerticalLayout[0]/Slot[1]"
+ + "/VVerticalLayout[0]/Slot[0]/VTabsheet[0]"
+ + "/domChild[0]/domChild[0]/domChild[0]"
+ + "/domChild[0]/domChild[" + index + "]"));
+
+ }
+
+ private String getHideButtonText() {
+ WebElement buttonCaption = getDriver().findElement(
+ By.vaadin("/VVerticalLayout[0]/Slot[1]/VVerticalLayout[0]"
+ + "/Slot[0]/VTabsheet[0]/VTabsheetPanel[0]"
+ + "/VButton[0]/domChild[0]/domChild[0]"));
+ return buttonCaption.getText();
+ }
+
+ private void sendKey(Keys key) {
+ new Actions(getDriver()).sendKeys(key).perform();
+ }
+
+}