jns
New member
Complete beginner.
How do I write the line of code that says "Click the HTML link that says 'Sign In'"
I haven't found a good solid tutorial explaining how to click an HTML link using Visual Basic code - links WITH and WITHOUT IDs.
If someone could provide a good explanation with examples, I think it would help a lot of people out. I searched all over online for this.
What I'm trying to do is simple: navigate to a site, click the Sign In link.
VB.NET:
WebBrowser1.Navigate("http://www.youtube.com/")
HTML:
<a class="end" href="https://www.google.com/accounts/ServiceLogin?uilel=3&service=youtube&passive=true&continue=http%3A%2F%2Fwww.youtube.com%2Fsignin%3Faction_handle_signin%3Dtrue%26nomobiletemp%3D1%26hl%3Den_US%26next%3D%252F&hl=en_US<mpl=sso">Sign In</a>
I haven't found a good solid tutorial explaining how to click an HTML link using Visual Basic code - links WITH and WITHOUT IDs.
If someone could provide a good explanation with examples, I think it would help a lot of people out. I searched all over online for this.
What I'm trying to do is simple: navigate to a site, click the Sign In link.