Where does chromedriver install to?
I've executed sudo apt-get install chromium-chromedriver
for selenium, but which chromedriver
does not return anything.
Solution 1:
The answer (from package search) is /usr/lib/chromium-browser/chromedriver
To put the chromedriver
binary in the path, you would write export PATH=$PATH:/usr/lib/chromium-browser/
.