I have been trying to learn the basics of Selenium for a couple days now, and I have kept running into the same roadblock.
The error :
Message: 'chromedriver' executable needs to be in PATH. Please see https://sites.google.com/a/chromium.org/chromedriver/home
keeps appearing despite the fact that the chromedriver and my python code are in the same folder. Is there any way to fix this? The code I am running is here:
import time
from selenium import webdriver
driver = webdriver.Chrome() # Optional argument, if not specified will search path.
driver.get('http://www.google.com/');