Hi,
I have the following html document in a local file (test.html). The content of the html document is as follows:
Quote:<body>
<div class="example">
<p>P element in first div with class="example". Div's index is 0.</p>
</div>
<div class="example color">
<p>P element in first div with class="example color". Div's index is 0.</p>
</div>
</body>
i am trying the following code in vb.net but its not working !
Quote: tmx = modIO.ReadTextFile("E:\test.html")
webview1.LoadHtmlAndWait(tmx)
Dim Classone as String = webview1.EvalScript("document.getElementsByClassName('example')")
Can you help me getting the value value of "example" class innerHTML, outerHTML or string!
Thanks in advance