Skip to content
Advertisement

How to add Chromedriver to PATH in linux?

Trying to use Selenium with Chrome in a python script.

I get the following error:

JavaScript

I know the location of the chromedriver executable. How do I add it to the PATH?

thank you

Advertisement

Answer

You can specify the absolute path to your chrome driver in your script as such:

JavaScript

Or you can add the path to your webdriver in the PATH system variable as so:

JavaScript

You may add the above line to your /home/<user>/.profile file to make it permanent.

Tested on Ubuntu 17.10 running Python 2.7.14

Hope this helps!

User contributions licensed under: CC BY-SA
10 People found this is helpful
Advertisement