I am trying to open Chrome with Selenium but when I run the code I get an error message stating: Cannot find Chrome library.
Sub driver()
Dim selenium As New selenium.WebDriver
selenium.Start "chrome", "http://google.com"
selenium.Get "/"
End Sub
I have installed the latest version of Selenium, and updated the Chromedriver. I think the problem is that Chrome.exe is not in the location selenium expects it to be. Does anybody know how to change the path to Chrome.exe?