Sha256: a9ea2f90e400b3cb284d426c1439d4d442c633acfbc2e714b5d71f4ad7a498ad

Contents?: true

Size: 862 Bytes

Versions: 9

Compression:

Stored size: 862 Bytes

Contents

# encoding: utf-8
$LOAD_PATH.unshift(File.dirname(__FILE__))
$LOAD_PATH.unshift(File.join(File.dirname(__FILE__), '..', 'lib'))

require 'coveralls'
Coveralls.wear!

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

9 entries across 9 versions & 1 rubygems

Version Path
watir-webdriver-0.6.11 spec/spec_helper.rb
watir-webdriver-0.6.10 spec/spec_helper.rb
watir-webdriver-0.6.9 spec/spec_helper.rb
watir-webdriver-0.6.8 spec/spec_helper.rb
watir-webdriver-0.6.7 spec/spec_helper.rb
watir-webdriver-0.6.6 spec/spec_helper.rb
watir-webdriver-0.6.5 spec/spec_helper.rb
watir-webdriver-0.6.4 spec/spec_helper.rb
watir-webdriver-0.6.3 spec/spec_helper.rb