Sha256: 44bc51f697b1055d23960b3a36d6d78a40914bbe51855d7f368c069e50d3a0f3
Contents?: true
Size: 943 Bytes
Versions: 2
Compression:
Stored size: 943 Bytes
Contents
#/bin/sh set -e set -x CHROME_REVISION=191150 sh -e /etc/init.d/xvfb start && git submodule update --init if [[ "$WATIR_WEBDRIVER_BROWSER" = "chrome" ]]; then sudo apt-get install -y unzip libxss1 curl -L -O "http://commondatastorage.googleapis.com/chromium-browser-snapshots/Linux_x64/$CHROME_REVISION/chrome-linux.zip" unzip chrome-linux.zip curl -L "http://commondatastorage.googleapis.com/chromium-browser-snapshots/Linux_x64/$CHROME_REVISION/chrome-linux.test/chromedriver" > chrome-linux/chromedriver chmod +x chrome-linux/chromedriver sudo chmod 1777 /dev/shm fi if [[ "$WATIR_WEBDRIVER_BROWSER" = "phantomjs" ]]; then PHANTOMJS_NAME=phantomjs-1.9.0-linux-x86_64 curl -L -O "https://phantomjs.googlecode.com/files/$PHANTOMJS_NAME.tar.bz2" tar -xvjf $PHANTOMJS_NAME.tar.bz2 chmod +x $PHANTOMJS_NAME/bin/phantomjs sudo cp $PHANTOMJS_NAME/bin/phantomjs /usr/local/phantomjs/bin/phantomjs phantomjs --version fi
Version data entries
2 entries across 2 versions & 1 rubygems
Version | Path |
---|---|
watir-webdriver-0.6.4 | support/travis.sh |
watir-webdriver-0.6.3 | support/travis.sh |