Hello there,

I have added WebBrowser component on my form. It loads my own website on webbrowser.navigate(). Then I login in and navigate to my private page.

Now, I want to grab some data between anchor tag. There are multiple anchor tags in that page. Like,

HTML Code:
<a href="something" class-index="something" id="something"> My Data </a>
<a href="something" class-index="something" id="something"> My Data 2</a>
<a href="something" class-index="something" id="something"> My Data 3</a>
I want to loop through get these values "My Data","My Data 2","My Data 3" ... and so on..

How can I do this ?

Thanks!