I am trying to execute some tests using chromedriver and have tried using the following methods to start chromedriver.
driver = webdriver.Chrome(\'/usr/local
Just pass the binary location as argument to it and not just the directory conatining it. So if it lies in /usr/bin directory, then run below command:
driver = webdriver.Chrome("/usr/bin/chromedriver")
This worked for me in ubuntu and adding path to bashrc is not working. Give it a try.