Help with web page form

xion911

Member
Joined
Aug 26, 2011
Messages
8
Programming Experience
Beginner
I am trying to make a program to find some text on a website and fill a text box in the program with that website text.

The website is Generate a Random Name - Fake Name Generator

I would like to take the info generated on that site and fill in text boxes in visual basic.

WebBrowser1.Navigate("http://www.fakenamegenerator.com/")
System.Threading.Thread.Sleep(2000)
Dim theElementCollection As HtmlElementCollection
theElementCollection = WebBrowser1.Document.GetElementsByTagName("input")
For Each curElement As HtmlElement In theElementCollection
Dim controlName As String = curElement.GetAttribute("name").ToString
If controlName = "given-name" Then
???

Please help me.
________________
 
Back
Top