Sha256: fcf9c7eac144459dda780834acf5e7b210c114a579b84268f484f5d5c0a48451

Contents?: true

Size: 512 Bytes

Versions: 13

Compression:

Stored size: 512 Bytes

Contents

$LOAD_PATH.unshift File.join(File.dirname(__FILE__), '..') unless $SETUP_LOADED
require 'unittests/setup'
require 'watir/WindowHelper'

class TC_Logon_Test < Test::Unit::TestCase
  include Watir
  
  def goto_windows_login_page
    browser.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

13 entries across 13 versions & 1 rubygems

Version Path
watir-1.8.1 unittests/other/WindowLogonExample.rb
watir-1.8.1.rc1 unittests/other/WindowLogonExample.rb
watir-1.8.0 unittests/other/WindowLogonExample.rb
watir-1.8.0.rc1 unittests/other/WindowLogonExample.rb
watir-1.7.1 unittests/other/WindowLogonExample.rb
watir-1.7.0 unittests/other/WindowLogonExample.rb
watir-1.7.0.rc1 unittests/other/WindowLogonExample.rb
watir-1.6.7 unittests/other/WindowLogonExample.rb
watir-1.6.7.rc1 unittests/other/WindowLogonExample.rb
watir-1.6.6 unittests/other/WindowLogonExample.rb
watir-1.6.6.rc2 unittests/other/WindowLogonExample.rb
watir-1.6.6.rc1 unittests/other/WindowLogonExample.rb
watir-1.6.2 unittests/other/WindowLogonExample.rb