如何使用WATIN在表Grid上查找项目

时间:2011-06-21 13:07:08

标签: watin

我在尝试在表上找到项目时遇到了一些问题 - 它是null或者我得到一个数组超出范围的异常。这就是我想要做的。

这是我从页面解析的示例html ....

<table id="ctl00__defaultCont__ctrlHeader__ctrlHeader_p_Providerd33">
<tr>
    <td class="w90 ta-right lbl">
                        <span>Provider ID</span>
                    </td>
    <td class="fieldWithNoBorderClass">
                        <div id="ob_iT_providerIDContainer" class="ob_iTCN" style="width:220px;"><div class="ob_iTL"></div><div class="ob_iTR"></div><div class="ob_iTC"><input name="ctl00$_defaultContent$_ctrlHeader$_ctrlHeader$_providerID" type="text" value="P13040620" id="ctl00__defaultContent__ctrlHeader__ctrlHeader__providerID" class="ob_iTIE" /></div><div class="ob_iCallbackScript" style="display:none;"></div></div>
                    </td>
</tr>

以下是我的开始:

我基本上是想找到PROVIDER ID。例如......

Table table = browser.Table(Find.ById("ctl00__defaultContent__ctrlHeader__ctrlHeader_p_Provider3"));
                        TableRowCollection tableRows = table.TableRows;
                        TableRow row = tableRows[3];
                        ElementCollection rowData = row.Elements;

                        string name = rowData[0].OuterText;
                        string membername = rowData[1].OuterText;

2 个答案:

答案 0 :(得分:2)

我做这样的事情,它适用于我的一个项目。也许这会给你一个线索。

注意:Watin表访问非常慢。

      Table table = browser.Table("ctl00_defaultContent_ctrlHeader__ctrlHeader_p_Provider3");
      if (table == null)
      {
         DebugLog("Could not find table");
         throw new Exception("Results table missing.");
      }
      TableRow tr = table.TableRows[3];
      while( tr != null)
      {
        string words = tr.TableCells[1].Text;
        tr = (TableRow)tr.NextSibling;
      }

答案 1 :(得分:0)

您需要逐个搜索该项目:

Table table = browser.Table(Find.ById("ctl00_defaultContent_ctrlHeader__ctrlHeader_p_Provider3")); 
  for (int i = 0; i < table.TableBodies[bodyIndex].TableRows.Count; i++)
      {
           if (table.TableBodies[0].OwnTableRows[i].TableCells[headerNameColumn].Text ==             "Provider id...")
           {
              // do something
           }
      }