package com.gloryroad.testcase;
import java.util.List;
import java.util.NoSuchElementException;
import org.openqa.selenium.By;
import org.openqa.selenium.WebElement;
public class Table {
private WebElement _table;
public Table(WebElement table){
set_table(table);
}
public WebElement get_table() {
return _table;
}
public void set_table(WebElement _table) {
this._table = _table;
}
public int getRowCount(){
List<WebElement> tableRows=_table.findElements(By.tagName("tr"));
return tableRows.size();
}
/**
* 获取列数
* @return
*/
public int getColumnCount(){
List<WebElement> tableRows=_table.findElements(By.tagName("tr"));
return tableRows.get(0).findElements(By.tagName("td")).size();
}
/**
* 获取表格中的某个单元格
* @param row
* @param cols
* @return
*/
public WebElement getCell(int row,int cols){
try {
List<WebElement> tableRows=_table.findElements(By.tagName("tr"));
System.out.println("行总数:"+tableRows.size());
System.out.println("行号:"+row);
WebElement currentRow=tableRows.get(row-1);
List<WebElement> tableCols=currentRow.findElements(By.tagName("td"));
System.out.println("列总数:"+tableCols.size());
WebElement cell=tableCols.get(cols-1);
System.out.println("列号:"+cols);
return cell;
} catch (Exception e) {
// TODO: handle exception
throw new NoSuchElementException("么有找到相关元素");
}
}
public WebElement getWebElementInCell(int row, int cols,By by){
WebElement cell = null;
try {
List<WebElement> tableRows=_table.findElements(By.tagName("tr"));
System.out.println("行总数:"+tableRows.size());
System.out.println("行号:"+row);
WebElement currentRow=tableRows.get(row-1);
List<WebElement> tableCols=currentRow.findElements(By.tagName("td"));
System.out.println("列总数:"+tableCols.size());
cell=tableCols.get(cols-1);
System.out.println("列号:"+cols);
} catch (Exception e) {
// TODO: handle exception
e.printStackTrace();
}
return cell.findElement(by);
}
}
自定义table表格
原创wx5e6caa8b9792d 博主文章分类:Java编程 ©著作权
©著作权归作者所有:来自51CTO博客作者wx5e6caa8b9792d的原创作品,请联系作者获取转载授权,否则将追究法律责任
提问和评论都可以,用心的回复会被更多人看到
评论
发布评论
相关文章
-
简易自定义table
需求描述: 需要一个table,要求如下: 1.有表格线 2.标题的颜色,背景色,每行的颜色,背景色,
android 表格 ide 背景色