This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Function Scrape(url As String) As String | |
Dim Browser As InternetExplorer | |
Dim Document As htmlDocument | |
Set Browser = New InternetExplorer | |
Browser.Visible = False | |
Browser.navigate url | |
Do While Browser.Busy And Not Browser.readyState = READYSTATE_COMPLETE | |
DoEvents |