I have tried to add the path of chrome driver in Ubuntu 18.04LTS.
its located at
/home/<usr>/Documents/Python/chromedriver
in my laptop
can any one help me with the solution for this?
Thanks in advance.
I have tried to add the path of chrome driver in Ubuntu 18.04LTS.
its located at
/home/<usr>/Documents/Python/chromedriver
in my laptop
can any one help me with the solution for this?
Thanks in advance.
After you downloaded und extracted ChromeDriver you have three options.
A) Save the file in a directory which is already in
PATH
B) Save the file at a custom location and add it to
PATH
C) Save the file at a custom location and create a symlink to the file in one of the directories that are already in
PATH
For the following examples let's assume the extracted file is in
~/Downloads
Example to A)
Example to B)
Example to C)
I hope i could make it clear.