Skip to main content

Manually installing a specific Chromedriver on Linux


Install Chrome 

  • Download and install Chrome browser from https://www.google.co.uk/chrome/?brand=WHAR&gclid=CjwKCAiAxeX_BRASEiwAc1QdkRiG8sNTxCPiDRXc3EeUaFvGnxPFbocOpcDFVMWTWQ0eGRNtZ6RneBoCfFkQAvD_BwE&gclsrc=aw.ds
  • Check current Chome browser Version

Install Chromedriver

  • Check which chromedriver version is nearest to the browser by going to https://chromedriver.storage.googleapis.com/
  • Download
    • wget https://chromedriver.storage.googleapis.com/<CHROMEDRIVER VERSION>/chromedriver_linux64.zip
  • Unzip
    • $ unzip chromedriver_linux64.zip
  • Install to system
    • sudo mv chromedriver /usr/bin/chromedriver
    • sudo chown root:root /usr/bin/chromedriver
    • $ sudo chmod +x /usr/bin/chromedriver

Lastly, verify that chromedriver is successfully installed!
$ chromedriver -v

Happy chromedriving!

Comments

Popular posts from this blog

Setting up SSH Keys for Git Account

Here is a simple guide to Generate ssh key: $ ssh-keygen just enter or say yes for every questions Enter your public key into your git account: cat ~/.ssh/id_rsa.pub Paste all the content of the file to the designated git account. The place where to put it may differ depending on what you are using (e.g. gitlab, github, etc...)  Tip: Almost all of them will be around the settings page of the git account Done!

Getting Used to tmux!

This is a short guide to multiplexing in your terminal! Installation Install  $ sudo apt install tmux launch $ tmux Core Commands Here is a small list of the most useful set of commands. Just remember these and you shall be tmuxing around in no time! Adding panes Add panes vertically ctl + b % Add panes Horizontally ctl + b "  Moving around panes Move to the panes to the right ctl + b <Right> Move to the panes to the left ctl + b <LEFT> Move to the panes to the up ctl + b <UP> Move to the panes to the down ctl + b <DOWN> Closing Window  Close current panes ctl + d Tip!!! You can resize panes by pressing: $ ctl + b + <arrow button> Scroll: $ ctl + b [ press < UP > or < DOWN > Quit $ q  

Installing Qt Cross Compilation Toolchain for Beaglebone Black

This is the guide that I went through to successfully set the environment. If you get stuck on something, feel free to have a look at the references in the bottom most. These are the steps that worked for me so I hope it helps. Just making sure of the dependencies sudo apt-get update sudo apt-get upgrade sudo apt-get install lib32z1 lib32ncurses5 lib32bz2-1.0 libstdc++6:i386 ia32-libs Assuming that you can get access to the root Set up Cross compiler Download and install wget -c https://releases.linaro.org/components/toolchain/binaries/6.4-2018.05/arm-linux-gnueabihf/gcc-linaro-6.4.1-2018.05-x86_64_arm-linux-gnueabihf.tar.xz tar xf gcc-linaro-6.4.1-2018.05-x86_64_arm-linux-gnueabihf.tar.xz export CC=`pwd`/gcc-linaro-6.4.1-2018.05-x86_64_arm-linux-gnueabihf/bin/arm-linux-gnueabihf- Test installation ${CC}gcc --version Download qt source #do this in a directory that is not in your root filesystem, i.e. ~ git clone git://code.qt.io...