作者热门文章
- html - 出于某种原因,IE8 对我的 Sass 文件中继承的 html5 CSS 不友好?
- JMeter 在响应断言中使用 span 标签的问题
- html - 在 :hover and :active? 上具有不同效果的 CSS 动画
- html - 相对于居中的 html 内容固定的 CSS 重复背景?
<tbody>
<tr>
<td>January</td>
<td>$100</td>
</tr>
<tr>
<td>February</td>
<td>$80</td>
</tr>
</tbody>
正如您从下面的简单表格中看到的,查找文本等于“January”的表格列很简单:“tr/td[text()='January']”但 td 可能会变得复杂,因为它可能包含嵌套元素。所以我们最好再提供一个By参数。
我的问题是如何编写可以执行此搜索的通用方法。我下面有一个,但不好, findTableRowsBy( 1, By.xpath( "text()='January'") ) 会导致异常。有人可以帮我完善这个方法吗?非常感谢。
public List<WebElement> findTableRowsBy( int column, By theBy )
{
By by = By.xpath( "tbody[1]/tr/td[" + column + "]" );
List<WebElement> cols = table.findElements( by );
List<WebElement> rows = new ArrayList<WebElement>();
for( WebElement e : cols )
{
List<WebElement> eles = e.findElements( theBy );
if( eles.isEmpty() )
continue;
if( eles.size() == 1 )
rows.add( eles.get( 0 ) );
}
return rows;
}
最佳答案
也许,您还可以使用以下 xpath:
//td[contains(text(), "January")]
我猜你应该能够找到正确的 td,即使它有嵌套元素。
关于java - 如何在 Selenium Java 中编写通用方法 findTableRowBy() ?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/7871642/
我是一名优秀的程序员,十分优秀!