私はVBでwebbrowserを使用して何らかの形でテキストを取得したい:このHTMLコードから00:15 :
<div id="stop15" class="sec">
<div class="sec">00:15</div>
</div>
私は試した :
Dim elements As HtmlElementCollection = WebBrowser1.Document.GetElementsByTagName("div")
For Each he As HtmlElement In elements
If he.OuterHtml.ToUpper.Contains("sec") Then
CheckedListBox1.Items.Add(he.GetAttribute("class"))
'or he.InnerText()
End If
Next
、しかし、それは動作しません。助けてくれてありがとう。