Получить элемент в иерархии html - PullRequest
0 голосов
/ 13 февраля 2012

У меня есть этот HTML-код. Я хочу получить текст внутри тега <div>, используя WatiN. Код C # приведен ниже, но я уверен, что это можно сделать намного лучше, чем мое решение. Есть предложения?

HTML:

<table id="someId" cellspacing="0" border="1" style="border-collapse:collapse;" rules="all">
    <tbody>
        <tr>
            <th scope="col">&nbsp;</th>
        </tr>
        <tr>
            <td>
                <div>Some text</div>
            </td>
        </tr>
    </tbody>
</table>

C #

// Get the table ElementContainer
IElementContainer diagnosisElementContainer = (IElementContainer)_control.GetElementById("someId");

// Get the tbody element
IElementContainer tbodyElementContainer = (IElementContainer)diagnosisElementContainer.ChildrenWithTag("tbody");

// Get the <tr> children
ElementCollection trElementContainer = tbodyElementContainer.ChildrenWithTag("tr");

// Get the <td> child of the last <tr>
IElementContainer tdElementContainer = (IElementContainer)trElementContainer.ElementAt<Element>(trElementContainer.Count - 1);

// Get the <div> element inside the <td>
Element divElement = tdElementContainer.Divs[0];

1 Ответ

1 голос
/ 13 февраля 2012

Исходя из приведенного, примерно так я бы поступил для IE.

IE myIE = new IE();
myIE.GoTo("[theurl]");
string theText = myIE.Table("someId").Divs[0].Text;

Выше работает на WatiN 2.1, Win7, IE9.

...