I am new to programming and am trying to scrape data off a web-page which appears to be loaded by page executed javascript.
I am told selenium is a good bet for being able to do this
I use Jupyter with Anaconda
I have installed selenium by using conda install
However, when trying to use the webdriver, I am running into a problem
from selenium import webdriver
driver = webdriver.firefox()
The error that shows is:
WebDriverException: Message: 'geckodriver' executable needs to be in PATH.
What can I do about this?
Thanks