summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorTeemu Suo-Anttila <teemusa@vaadin.com>2015-02-09 15:26:15 +0200
committerVaadin Code Review <review@vaadin.com>2015-02-10 14:41:23 +0000
commit8d6a0c879df06cf6a1bb5dcbc32f6916c29fedf3 (patch)
treed0f8dadffabefcfe1d5ad93df2b9059dae8cd773
parent3938383b767093cee55b2538783665ef3847d8ef (diff)
downloadvaadin-framework-8d6a0c879df06cf6a1bb5dcbc32f6916c29fedf3.tar.gz
vaadin-framework-8d6a0c879df06cf6a1bb5dcbc32f6916c29fedf3.zip
Use TestBenchElements in GridElement API (#16600)
Change-Id: Iad416ae1c8df1c1dddadadd107e8cc2817450ac9
-rw-r--r--uitest/src/com/vaadin/testbench/elements/GridElement.java22
1 files changed, 11 insertions, 11 deletions
diff --git a/uitest/src/com/vaadin/testbench/elements/GridElement.java b/uitest/src/com/vaadin/testbench/elements/GridElement.java
index e04140a3e0..3753696855 100644
--- a/uitest/src/com/vaadin/testbench/elements/GridElement.java
+++ b/uitest/src/com/vaadin/testbench/elements/GridElement.java
@@ -275,7 +275,7 @@ public class GridElement extends AbstractComponentElement {
* Row index
* @return The th element of the row
*/
- public WebElement getHeaderRow(int rowIndex) {
+ public TestBenchElement getHeaderRow(int rowIndex) {
return getSubPart("#header[" + rowIndex + "]");
}
@@ -286,7 +286,7 @@ public class GridElement extends AbstractComponentElement {
* Row index
* @return The tr element of the row
*/
- public WebElement getFooterRow(int rowIndex) {
+ public TestBenchElement getFooterRow(int rowIndex) {
return getSubPart("#footer[" + rowIndex + "]");
}
@@ -295,9 +295,9 @@ public class GridElement extends AbstractComponentElement {
*
* @return The element representing the vertical scrollbar
*/
- public WebElement getVerticalScroller() {
+ public TestBenchElement getVerticalScroller() {
List<WebElement> rootElements = findElements(By.xpath("./div"));
- return rootElements.get(0);
+ return (TestBenchElement) rootElements.get(0);
}
/**
@@ -305,9 +305,9 @@ public class GridElement extends AbstractComponentElement {
*
* @return The element representing the horizontal scrollbar
*/
- public WebElement getHorizontalScroller() {
+ public TestBenchElement getHorizontalScroller() {
List<WebElement> rootElements = findElements(By.xpath("./div"));
- return rootElements.get(1);
+ return (TestBenchElement) rootElements.get(1);
}
/**
@@ -315,7 +315,7 @@ public class GridElement extends AbstractComponentElement {
*
* @return The thead element
*/
- public WebElement getHeader() {
+ public TestBenchElement getHeader() {
return getSubPart("#header");
}
@@ -324,7 +324,7 @@ public class GridElement extends AbstractComponentElement {
*
* @return the tbody element
*/
- public WebElement getBody() {
+ public TestBenchElement getBody() {
return getSubPart("#cell");
}
@@ -333,7 +333,7 @@ public class GridElement extends AbstractComponentElement {
*
* @return the tfoot element
*/
- public WebElement getFooter() {
+ public TestBenchElement getFooter() {
return getSubPart("#footer");
}
@@ -342,9 +342,9 @@ public class GridElement extends AbstractComponentElement {
*
* @return The element that wraps the table element
*/
- public WebElement getTableWrapper() {
+ public TestBenchElement getTableWrapper() {
List<WebElement> rootElements = findElements(By.xpath("./div"));
- return rootElements.get(2);
+ return (TestBenchElement) rootElements.get(2);
}
public GridEditorElement getEditor() {