com.seleniumtests.webelements.Table Maven / Gradle / Ivy
/*
* Copyright 2015 www.seleniumtests.com
* 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.seleniumtests.webelements;
import java.util.List;
import org.openqa.selenium.By;
import org.openqa.selenium.NotFoundException;
import org.openqa.selenium.WebElement;
public class Table extends HtmlElement {
private List rows = null;
private List columns = null;
public Table(final String label, final By by) {
super(label, by);
}
public void findElement() {
super.findElement();
try {
rows = element.findElements(By.tagName("tr"));
} catch (NotFoundException e) { }
}
public int getColumnCount() {
if (rows == null) {
findElement();
}
// Need to check whether rows is null AND whether or not the list of rows is empty
if (rows != null && !rows.isEmpty()) {
try {
columns = rows.get(0).findElements(By.tagName("td"));
} catch (NotFoundException e) { }
if (columns == null || columns.size() == 0) {
try {
if (rows.size() > 1) {
columns = rows.get(1).findElements(By.tagName("td"));
} else {
columns = rows.get(0).findElements(By.tagName("th"));
}
} catch (NotFoundException e) { }
}
}
if (columns != null) {
return columns.size();
}
return 0;
}
public List getColumns() {
return columns;
}
/**
* Get table cell content.
*
* @param row Starts from 1
* @param column Starts from 1
*/
public String getContent(final int row, final int column) {
if (rows == null) {
findElement();
}
if (rows != null && !rows.isEmpty()) {
try {
columns = rows.get(row - 1).findElements(By.tagName("td"));
} catch (NotFoundException e) { }
if (columns == null || columns.size() == 0) {
try {
columns = rows.get(row - 1).findElements(By.tagName("th"));
} catch (NotFoundException e) { }
}
return columns.get(column - 1).getText();
}
return null;
}
public int getRowCount() {
if (rows == null) {
findElement();
} else {
return rows.size();
}
int count = element.findElements(By.xpath("tbody/tr")).size();
if (count == 0) {
count = element.findElements(By.xpath("tr")).size();
}
return count;
}
public List getRows() {
if (rows == null) {
findElement();
}
return rows;
}
public boolean isHasBody() {
return getRows().size() > 0;
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy