Sha256: cb9c96d5a2082d38c6046656d83c4a4a62c605b73ec8edc1da7e5a0f8cfcf52c
Contents?: true
Size: 676 Bytes
Versions: 1
Compression:
Stored size: 676 Bytes
Contents
#!/bin/bash -ex mkdir bin/ # https://omahaproxy.appspot.com # https://commondatastorage.googleapis.com/chromium-browser-snapshots/index.html?prefix=Linux_x64/ CHROME_REVISION=386257 curl -L -O "http://commondatastorage.googleapis.com/chromium-browser-snapshots/Linux_x64/${CHROME_REVISION}/chrome-linux.zip" unzip chrome-linux.zip ln -s "$(pwd)/chrome-linux/chrome" "$(pwd)/bin/google-chrome" CHROMEDRIVER_VERSION=$(curl -s http://chromedriver.storage.googleapis.com/LATEST_RELEASE) curl -L -O "http://chromedriver.storage.googleapis.com/${CHROMEDRIVER_VERSION}/chromedriver_linux64.zip" unzip chromedriver_linux64.zip ln -s "$(pwd)/chromedriver" "$(pwd)/bin/chromedriver"
Version data entries
1 entries across 1 versions & 1 rubygems
Version | Path |
---|---|
watir-scroll-0.2.0 | spec/support/travis.sh |