summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorSauli Tähkäpää <sauli@vaadin.com>2014-11-25 14:41:48 +0200
committerSauli Tähkäpää <sauli@vaadin.com>2014-11-25 14:42:44 +0200
commit95fdc0996298713000d60c94195b9446850dc819 (patch)
tree47829e39b4adcedd0850e61de62791b02395818e
parent0507127d674d67052ff2e2d9f139e3a69d871169 (diff)
downloadvaadin-framework-95fdc0996298713000d60c94195b9446850dc819.tar.gz
vaadin-framework-95fdc0996298713000d60c94195b9446850dc819.zip
Converted SetCurrentPageFirstItemIndex to TB4. (#15286)
Change-Id: Iea990c243e083b3302fd1e448402ac3aa3db08ac
-rw-r--r--uitest/src/com/vaadin/tests/components/table/SetCurrentPageFirstItemIndex.html43
-rw-r--r--uitest/src/com/vaadin/tests/components/table/SetCurrentPageFirstItemIndexTest.java63
2 files changed, 63 insertions, 43 deletions
diff --git a/uitest/src/com/vaadin/tests/components/table/SetCurrentPageFirstItemIndex.html b/uitest/src/com/vaadin/tests/components/table/SetCurrentPageFirstItemIndex.html
deleted file mode 100644
index 904f3b0470..0000000000
--- a/uitest/src/com/vaadin/tests/components/table/SetCurrentPageFirstItemIndex.html
+++ /dev/null
@@ -1,43 +0,0 @@
-<?xml version="1.0" encoding="UTF-8"?>
-<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Strict//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-strict.dtd">
-<html xmlns="http://www.w3.org/1999/xhtml" xml:lang="en" lang="en">
-<head profile="http://selenium-ide.openqa.org/profiles/test-case">
-<meta http-equiv="Content-Type" content="text/html; charset=UTF-8" />
-<link rel="selenium.base" href="http://localhost:8888/" />
-<title>New Test</title>
-</head>
-<body>
-<table cellpadding="1" cellspacing="1" border="1">
-<thead>
-<tr><td rowspan="1" colspan="3">New Test</td></tr>
-</thead><tbody>
-
-<tr>
- <td>open</td>
- <td>run/com.vaadin.tests.components.table.SetCurrentPageFirstItemIndex?restartApplication</td>
- <td></td>
-</tr>
-<tr>
- <td>click</td>
- <td>vaadin=runcomvaadintestscomponentstableSetCurrentPageFirstItemIndex::/VVerticalLayout[0]/Slot[1]/VButton[0]/domChild[0]/domChild[0]</td>
- <td></td>
-</tr>
-<tr>
- <td>click</td>
- <td>vaadin=runcomvaadintestscomponentstableSetCurrentPageFirstItemIndex::/VVerticalLayout[0]/Slot[1]/VButton[0]/domChild[0]/domChild[0]</td>
- <td></td>
-</tr>
-<tr>
- <td>pause</td>
- <td>500</td>
- <td></td>
-</tr>
-<tr>
- <td>assertText</td>
- <td>vaadin=runcomvaadintestscomponentstableSetCurrentPageFirstItemIndex::/VVerticalLayout[0]/Slot[0]/VScrollTable[0]/domChild[1]/domChild[0]/domChild[1]/domChild[0]/domChild[2]/domChild[0]/domChild[0]</td>
- <td>6</td>
-</tr>
-
-</tbody></table>
-</body>
-</html> \ No newline at end of file
diff --git a/uitest/src/com/vaadin/tests/components/table/SetCurrentPageFirstItemIndexTest.java b/uitest/src/com/vaadin/tests/components/table/SetCurrentPageFirstItemIndexTest.java
new file mode 100644
index 0000000000..8102f82834
--- /dev/null
+++ b/uitest/src/com/vaadin/tests/components/table/SetCurrentPageFirstItemIndexTest.java
@@ -0,0 +1,63 @@
+/*
+ * Copyright 2000-2014 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.table;
+
+import static org.hamcrest.CoreMatchers.is;
+import static org.hamcrest.MatcherAssert.assertThat;
+import junit.framework.Assert;
+
+import org.junit.Ignore;
+import org.junit.Test;
+import org.openqa.selenium.NoSuchElementException;
+
+import com.vaadin.testbench.TestBenchElement;
+import com.vaadin.testbench.elements.ButtonElement;
+import com.vaadin.testbench.elements.TableElement;
+import com.vaadin.tests.tb3.MultiBrowserTest;
+
+/**
+ *
+ * @since
+ * @author Vaadin Ltd
+ */
+@Ignore
+// Enable after #15286 is fixed.
+public class SetCurrentPageFirstItemIndexTest extends MultiBrowserTest {
+
+ @Test
+ public void currentPageIndexChangesTwice() {
+ openTestURL();
+
+ ButtonElement button = $(ButtonElement.class).first();
+ button.click(); // change to 20
+ button.click(); // change to 5
+
+ // When failing, the index stays on 20.
+ assertThatRowIsVisible(5);
+ }
+
+ private void assertThatRowIsVisible(int index) {
+ try {
+ TableElement table = $(TableElement.class).first();
+ TestBenchElement cell = table.getCell(index, 0);
+
+ assertThat(cell.getText(), is(Integer.toString(index + 1)));
+ } catch (NoSuchElementException e) {
+ Assert.fail(String.format("Can't locate row for index: %s", index));
+ }
+ }
+
+}