TECHIES WORLD

For Techs.... Techniques.... Technologies....

Linux

How to install Chromedriver in Linux

ChromeDriver is a standalone server which implements WebDriver's wire protocol for Chromium. WebDriver is an open source tool for automated testing of webapps across many browsers. It provides capabilities for navigating to web pages, user input, JavaScript execution, and more.

Step1: Download the package

#wget https://chromedriver.storage.googleapis.com/2.28/chromedriver_linux64.zip

Step2: Extract the package

#unzip chromedriver_linux64.zip

Step3: Give execute privilege to the binary file

#chmod +x chromedriver

Step4: Move the binary to Linux binary location

#mv chromedriver /usr/bin/

 

That's all........

Leave a Reply