Hello,
I am having difficulties scraping webpage contents using SeleniumBasic, which I am new to. I can get a bunch of HTML language, but I cannot get the actual contents from the webpage. Below is the code I have, which requires the Selenium Type Library to run. I'm not sure what I am doing wrong.
I am having difficulties scraping webpage contents using SeleniumBasic, which I am new to. I can get a bunch of HTML language, but I cannot get the actual contents from the webpage. Below is the code I have, which requires the Selenium Type Library to run. I'm not sure what I am doing wrong.
VBA Code:
Sub WikiScrape()
Dim driver As New ChromeDriver
driver.Get "https://en.wikipedia.org/wiki/Car"
Debug.Print driver.PageSource
End Sub