You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
As I discovered, it should be present in the PATH and then Selenium becomes able to find it.
The easiest way to do so is to install in via homebrew:
brew install geckodriver
And then it is necessary to replace in the script all lines that create a driver from driver = webdriver.Firefox(executable_path=geckopath) to driver = webdriver.Firefox().
The text was updated successfully, but these errors were encountered:
As I discovered, it should be present in the PATH and then Selenium becomes able to find it.
The easiest way to do so is to install in via homebrew:
And then it is necessary to replace in the script all lines that create a driver from
driver = webdriver.Firefox(executable_path=geckopath)
todriver = webdriver.Firefox()
.The text was updated successfully, but these errors were encountered: