Update chromedriver

I would like to have my builds install the latest chromedriver on the 14.04 build image. How do I do this? It seems a bit more complicated than an upgraded browser installation.

That should do it:

dependencies:
    override:
        #new chromedriver
        - wget https://chromedriver.storage.googleapis.com/2.29/chromedriver_linux64.zip
        - unzip chromedriver_linux64.zip
        - sudo cp chromedriver /usr/local/bin/chromedriver
1 Like