如何使用硒获得css类名?

2022-09-01 10:07:21

我是硒测试的新手。我想使用硒获取css类名。我正在使用eclipse和Java进行开发。

<table >
<tr class="odd"><td>Odd row</td></tr>
<tr class="even"><td>Even row</td></tr>
<tr class="odd"><td>Odd row2</td></tr>
<tr class="even"><td>Even row2</td></tr>       
</table>

有没有办法用硒获得类名“奇数”或“偶数”?我


答案 1

从 a 中,您可以使用如下方法:WebElementgetAttribute

element.getAttribute("class")

答案 2

是的,您可以使用功能来满足您的要求。getAttribute(attributeLocator)

 selenium.getAttribute(//xpath@class);

指定需要知道其类的元素的 Xpath。

谢谢。


推荐