hello everyone
im having trouble right now. im actually creating a web scraping vba. but when i try to inspect the element of the button i cant find the submit value.
check the image below.
Capture.JPG
the web site is http://www.latlong.net/
here's my code right now
i just need to press that button
Sub Fill_Website_Textbox()
Dim objIE As SHDocVw.InternetExplorer
Dim OrgBox As HTMLInputElement
Set objIE = New SHDocVw.InternetExplorer
objIE.navigate "http://www.latlong.net/"
objIE.Visible = True
Do While objIE.readyState < 4: Loop
Set OrgBox = objIE.document.getElementById("gadres")
OrgBox.Value = "Hello"
End Sub
thanks in advance
Bookmarks