This is regarding the instructions under the header Setting up Selenium in Node
I have downloaded GeckoDriver and ChromeDriver, as instructed, and have placed them both in my personal Users folder (MacOS), in my "personal name"s folder.
And I have opened my .bash_profile
and export
ed the PATH to both files in there as such:
export PATH=$PATH:/Users/<personal name>/geckodriver-0.30.0
export PATH=$PATH:/Users/<personal name>/chromedriver
After running the terminal command, echo $PATH
, the following returns:
/Users/<personal name>/.nvm/versions/node/v16.11.0/bin:/usr/local/bin:/usr/bin:/bin:/usr/sbin:/sbin:/opt/X11/bin:/Users/<personal name>/.nvm/versions/node/v16.11.0/bin:/Users/andrewrea/geckodriver-0.30.0:/Users/<personal name>/chromedriver:/Users/<personal name>/geckodriver-0.30.0:/Users/<personal name>/chromedriver
And the browser which should open is not opening.
Any help would be appreciated.