Sha256: 3c9af71748058d30e7c5447791ba74630b4d4f18e85b462678ce4e49276d49ba
Contents?: true
Size: 760 Bytes
Versions: 22
Compression:
Stored size: 760 Bytes
Contents
require 'watir' require 'watir/core' require 'watir/close_all' require 'watir/ie-process' # these switches need to be deleted from ARGV to enable the Test::Unit # functionality that grabs # the remaining ARGV as a filter on what tests to run. # Note: this means that watir must be require'd BEFORE test/unit. # (Alternatively, you could require test/unit first and then put the Watir::IE # arguments after the '--'.) # Make Internet Explorer invisible. -b stands for background $HIDE_IE ||= ARGV.delete('-b') # Run fast $FAST_SPEED = ARGV.delete('-f') # Eat the -s command line switch (deprecated) ARGV.delete('-s') require 'watir/win32' require 'watir/modal_dialog' require 'watir/collections' require 'watir/camel_case'
Version data entries
22 entries across 22 versions & 1 rubygems