Store Selenium HTML Source Code into element of type HTMLDocument
问题 Is it possible to store the HTML source grabbed with Selenium (using Excel VBA) into a HTMLDocument element? This is an example using Microsoft Internet Controls and Microsoft HTML Object Library to automate Internet Explorer. Dim IE as InternetExplorer Dim HTML as HTMLDocument Set IE = New InternetExplorer ie.navigate "www.google.com" set HTML = IE.Document can the same be dome with Selenium? For example something like (not working!): Dim selenium As SeleniumWrapper.WebDriver Set selenium =