I keep getting an error message as well as others in Selenium Python when I use
driver = webdriver.Firefox()
driver.get('http://stackoverflow.com')
Error message:
selenium.common.exceptions.WebDriverException: Message: 'geckodriver' executable needs to be in PATH or:
selenium.common.exceptions.WebDriverException: Message: Unable to find a matching set of capabilities.
I keep getting this message as well as others in Selenium Python. I can get around this with:
driver = webdriver.Firefox(executable_path=r'C:\Users\Bain3\Music\geckodriver.exe')
driver.get(' http://stackoverflow.com' )
I have tried the following to remedy this issue with Chrome and Firefox: Reinstalling Chrome, Firefox, Pycharm, Anaconda, Selenium (pip install selenium)
Changing directory of file: https://ibb.co/huDuWk
This issue occurred after reinstalling Chrome and Firefox.
Directories are:
C:\Users\Bain3\Anaconda3
C:\Brother\geckodriver.exe
C:\Program Files\Mozilla Firefox\firefox.exe
I am using windows 10 Thanks
There are two ways to set the path
Place the
chromedriver.exe
's path intoPATH
(on Windows computer ), so yourPATH
setting is correct, but you need to call the default constructor to use it .driver = webdriver.Chrome()
Specify the path in
webdriver.Chrome(executable_path='some path')
. Here you need the full path to the executable, not the directory where you store the path .webdriver.Chrome(executable_path='C:\\Users\sankalp\\chromedriver.exe')
Choose either one you want.