<td class="RANDOM"><strong>THE TEXT I WANT</strong></td>
WebBrowser1.Document.GetElementById
Dim elements As IEnumerable(Of HtmlElement) = WebBrowser1.Document.GetElementsByTagName("td").Cast(Of HtmlElement)().Where(Function(h As HtmlElement) h.GetAttribute("className") = "RANDOM")
'element now contains all the td elements with the class name "random"
