我在 Ruby 中使用 Webdriver,我想验证页面上是否存在三个文本。
这是我要验证的 html 片段:
<table class="c1">
<thead>many subtags</thead>
<tbody id="id1">
<tr class="c2">
<td class="first-child">
<span>test1</span>
</td>
manny other <td></td>
</tr>
<tr class="c2">
<td class="first-child">
<span>test2</span>
</td>
manny other <td></td>
</tr>
<tr class="c2">
<td class="first-child">
<span>test3</span>
</td>
manny other <td></td>>
</tr>
</tbody>
</table>
如何使用验证此页面上显示的“test1”、“test2”和“test3”
- 查找元素
- 查找元素
- 获取页面源?
最好的方法是什么?
非常感谢。