public static int getRowCount(WebElement element) throws Exception {
try {
WebElement table =element;
@SuppressWarnings(“rawtypes”)
List rows = table.findElements(By.tagName(“tr”));
return rows.size();
} catch (Exception e) {
return -1;
}
try {
WebElement table =element;
@SuppressWarnings(“rawtypes”)
List rows = table.findElements(By.tagName(“tr”));
return rows.size();
} catch (Exception e) {
return -1;
}
No comments:
Post a Comment