I am trying to search through the HTML at a high level by using the WebBrowser control (rather than pulling a raw HTML from HTTP GET)
I have tried every iteration and exampleI can find including ..Body.InnetText, ...OuterText, ...ActiveElement.InnerText, ...outertext/HTM but I can't seem to find the following with any webBrowser1.Document.x call
All of the HTML that I am able to extract is missing the DIV tag
This is what I am looking for in the HTML stream:
Presense of the div tag with class of buttonNext indicates there is another page to be displayed and the absence of this text (no div with buttonNext) indicates we are looking at the last page in the batch.Code:<div class="buttonNext"><a href="main.php?g2_page=3" title="Last"></a></div> </td> </tr></table> </div>
Where to I find this in the document object model?
NOTE: The only way I can see this HTML is when I manually surf to the URL and select "View Source". Only at this point do I see this tag that seems to be missing from all the document object calls I have attempted.




Reply With Quote