如何 select 没有 ID 或 class 的 table
How to select a table with no ID or class
澄清 - 我正在使用 Watin 来自动化浏览器。这是我需要创建的 Watin Table 对象,而不是 javascript 对象。
我正在使用 watin 从网络应用程序中提取数据。我需要创建一个 watin Table
,但是 html 中的 table 既没有 ID 也没有 class。
虽然它嵌套在另一个 table 中,但在一个 div 中,它的 ID 为 detailsDiv
。
<div id="detailsDiv">
<table>
<tbody>
<table> <!-- This is the table I need to get to-->
</table>
</tbody>
</table>
</div>
有没有一种方法可以从 table 中创建一个没有 ID 或 class 的对象?
这就是我想出的办法。将来可能会帮助其他人:
Div detailsDiv = ie.Div("detailsDiv");
TableCollection tableColl = detailsDiv.Tables;
Table featuresTable = tableColl[1];
澄清 - 我正在使用 Watin 来自动化浏览器。这是我需要创建的 Watin Table 对象,而不是 javascript 对象。
我正在使用 watin 从网络应用程序中提取数据。我需要创建一个 watin Table
,但是 html 中的 table 既没有 ID 也没有 class。
虽然它嵌套在另一个 table 中,但在一个 div 中,它的 ID 为 detailsDiv
。
<div id="detailsDiv">
<table>
<tbody>
<table> <!-- This is the table I need to get to-->
</table>
</tbody>
</table>
</div>
有没有一种方法可以从 table 中创建一个没有 ID 或 class 的对象?
这就是我想出的办法。将来可能会帮助其他人:
Div detailsDiv = ie.Div("detailsDiv");
TableCollection tableColl = detailsDiv.Tables;
Table featuresTable = tableColl[1];