Hello,
I am attempting to extract information from a website once I click a certain link. What I would like to do is manually click a link and extract the text in the link and the address of the link. I have no trouble navigating to the webpage I want. My code is posted below using google as the website.
Set ie = CreateObject("InternetExplorer.Application")
ie.Visible = True
ie.navigate "http://www.google.com/"
As an example, once the page is open I would like to manually click a link such as "Images" at the top left. At this point, the macro should store the text "Images" and the google images address "http://www.google.com/imghp?hl=en&tab=wi".
Thank you for your help.
Bookmarks