Sha256: f975cbd410a4074e4a1a878814ef216523ae1d1f215422f0b1f3d379cda761bc
Contents?: true
Size: 475 Bytes
Versions: 1
Compression:
Stored size: 475 Bytes
Contents
$LOAD_PATH.unshift File.join(File.dirname(__FILE__), '..') if $0 == __FILE__ require 'unittests/setup' require 'watir/WindowHelper' class TC_Logon_Test < Test::Unit::TestCase include Watir def goto_windows_login_page() $ie.goto('http://clio.lyris.com/') end def test_window_logon() a = Thread.new { system('ruby WindowLogonExtra.rb') } b = Thread.new { goto_windows_login_page() } a.join b.join end end
Version data entries
1 entries across 1 versions & 1 rubygems
Version | Path |
---|---|
watir-1.4.1 | unittests/WindowLogonExample.rb |