gpt4 book ai didi

selenium - 如何使用 Selenium RC 检索表列中的文本?

转载 作者:行者123 更新时间:2023-12-02 21:44:19 24 4
gpt4 key购买 nike

我有一个如下所示的表格:

<table class="theClass">
<tr>
<td class="anotherClass"><strong>Label1:</strong></td>
<td colspan="3">Value1a<br/>Value1b<br/>Value1c</td>
</tr>

<tr>
<td class="anotherClass"><strong>Label2:</strong></td>
<td colspan="3">Value2a<br/>Value2b<br/>Value2c</td>
</tr>

<tr>
<td class="anotherClass"><strong>Label3:</strong></td>
<td colspan="3">Value3a<br/>Value3b<br/>Value3c</td>
</tr>
</table>

如何使用 Selenium RC 检索 Value1a、Value1b 和 Value1c ?我可以使用 selenium.getText(...) 或 storeText(...) 吗?如果是这样,我应该使用什么正确的 xpath?请假设该表无法更改。谢谢!

最佳答案

这将是

string value1 = selenium.getTable("table.1.2");
string value2 = selenium.getTable("table.2.2");

等等。

getTable 的帮助文本是

getTable(tableCellAddress) Arguments:

  • tableCellAddress - a cell address, e.g. "foo.1.4"

    Returns: the text from the specified cell

    Gets the text from a cell of a table. The cellAddress syntax tableLocator.row.column, where row and column start at 0.

关于selenium - 如何使用 Selenium RC 检索表列中的文本?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/2348028/

24 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com