Sha256: 706f6744706215aaa8daff4cdafe8c74fab901317160e623cc19fa170bbda667

Contents?: true

Size: 721 Bytes

Versions: 5

Compression:

Stored size: 721 Bytes

Contents

#/bin/sh

sh -e /etc/init.d/xvfb start && git submodule update --init || exit 1

if [[ "$WATIR_WEBDRIVER_BROWSER" = "chrome" ]]; then
  curl -L https://dl-ssl.google.com/linux/linux_signing_key.pub | sudo apt-key add - 
  sudo -s 'echo "deb http://dl.google.com/linux/chrome/deb/ stable main" >> /etc/apt/sources.list'
  sudo apt-get update
  sudo apt-get -y install google-chrome-unstable unzip
  # curl -k http://chromium.googlecode.com/files/chromedriver_linux32_14.0.836.0.zip | sudo -s 'funzip > /usr/bin/chromedriver'
  sudo -s 'curl -L http://commondatastorage.googleapis.com/chromium-browser-snapshots/Linux/102682/chrome-linux.test/chromedriver > /usr/bin/chromedriver'
  sudo chmod +x /usr/bin/chromedriver
fi

Version data entries

5 entries across 5 versions & 1 rubygems

Version Path
watir-webdriver-0.3.9 support/travis.sh
watir-webdriver-0.3.8 support/travis.sh
watir-webdriver-0.3.7 support/travis.sh
watir-webdriver-0.3.6 support/travis.sh
watir-webdriver-0.3.5 support/travis.sh