Sha256: 1061e0bdc69e5175a73f1eba1599092f3b4619df3a26c5ab1e8e7a861091e179
Contents?: true
Size: 646 Bytes
Versions: 1
Compression:
Stored size: 646 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 WEBDRIVER_SELECTORS = [:class, :class_name, :css, :id, :name, :tag_name, :xpath] if ENV['TRAVIS'] ENV['DISPLAY'] = ":99.0" end if Selenium::WebDriver::Platform.linux? && ENV['DISPLAY'].nil? raise "DISPLAY not set" end
Version data entries
1 entries across 1 versions & 1 rubygems
Version | Path |
---|---|
watir-webdriver-0.3.5 | spec/spec_helper.rb |