Sha256: 99d107162c15f43e0fbac4503f2ed960c06a506ec1810f76fd9ecb8cc95c00ea
Contents?: true
Size: 990 Bytes
Versions: 2
Compression:
Stored size: 990 Bytes
Contents
require 'yaml' require 'active_support/core_ext/hash' module Awetestlib ::USING_WINDOWS = !!((RUBY_PLATFORM =~ /(win|w)(32|64)$/) || (RUBY_PLATFORM=~ /mswin|mingw/)) ::USING_OSX = RUBY_PLATFORM =~ /darwin/ BROWSER_MAP = { 'FF' => 'Firefox', 'IE' => 'Internet Explorer', 'S' => 'Safari', 'MS' => 'Mobile Safari', 'C' => 'Chrome' } BROWSER_ALTERNATES = { 'OSX' => { 'IE' => 'S' }, 'Windows' => { 'S' => 'IE' } } if USING_WINDOWS #require 'win32ole' <-- We'll load this later in Shamisen::AwetestLegacy::Runner. It has to be loaded after watir, see https://www.pivotaltracker.com/story/show/19249981 require 'win32/screenshot' end #require 'active_support/inflector' #require 'active_support/core_ext/object' #require 'active_support/core_ext/hash' require 'andand' require 'regression/runner' if USING_OSX require 'appscript' end require 'roo' end
Version data entries
2 entries across 2 versions & 1 rubygems
Version | Path |
---|---|
awetestlib-0.1.3-x86-mingw32 | lib/awetestlib.rb |
awetestlib-0.1.2-x86-mingw32 | lib/awetestlib.rb |