Sha256: 2118781857699a69a0e5151d08f4d53d64c14e1cc43349c397f4b793fd268f1a
Contents?: true
Size: 987 Bytes
Versions: 8
Compression:
Stored size: 987 Bytes
Contents
# encoding: utf-8 $LOAD_PATH.unshift(File.dirname(__FILE__)) $LOAD_PATH.unshift(File.join(File.dirname(__FILE__), '..', 'lib')) if ENV['coverage'] raise "simplecov only works on Ruby 1.9" unless RUBY_VERSION =~ /^1\.9/ require 'simplecov' SimpleCov.start { add_filter "spec/" } end require 'watir-webdriver' require 'locator_spec_helper' require 'rubygems' require 'rspec' include Watir include Watir::Exception if ENV['ALWAYS_LOCATE'] == "false" Watir.always_locate = false end if ENV['PREFER_CSS'] Watir.prefer_css = true end WEBDRIVER_SELECTORS = [:class, :class_name, :css, :id, :tag_name, :xpath] if ENV['TRAVIS'] ENV['DISPLAY'] = ":99.0" if ENV['WATIR_WEBDRIVER_BROWSER'] == "chrome" ENV['WATIR_WEBDRIVER_CHROME_BINARY'] = File.expand_path "chrome-linux/chrome" ENV['WATIR_WEBDRIVER_CHROME_DRIVER'] = File.expand_path "chrome-linux/chromedriver" end end if Selenium::WebDriver::Platform.linux? && ENV['DISPLAY'].nil? raise "DISPLAY not set" end
Version data entries
8 entries across 8 versions & 1 rubygems