I would like to know how to retrieve an "a" element into a div.
I have an HTML like :
<div id="content">
<div class="divSearchForm">
<table>
<tbody>
<tr id="tr1">
<td>
<img class="SearchImage">
List of systems
</td>
<td>
<table width="100%" class="Result">
<tbody>
<tr>
<td>
<a href="test">K</a>
</td>
</tr>
</tbody>
</table>
</td>
</tr>
</tbody>
</table>
</div>
And I would like to know how to get the "K" link.
For now, I have :
webBrowser1.Document.GetElementById("content").GetElementsByTagName("a");
But it looks like nothings happened.
Do you have any idea? Thanks
GetElementById("content")?