Sha256: d3b340de4fe4bb777c778a0db30ddf59ecdbc696f5e7935b5c23c1a494d7d803

Contents?: true

Size: 1.63 KB

Versions: 2

Compression:

Stored size: 1.63 KB

Contents

# feature tests for JavaScript events
# revision: $Revision: 1348 $

$LOAD_PATH.unshift File.join(File.dirname(__FILE__), '..', '..') if $0 == __FILE__
require 'unittests/setup'

class TC_JSEvents < Test::Unit::TestCase
  def setup
    goto_page "javascriptevents.html"
  end
  
  def test_Button_disabled
    assert(! $ie.button(:caption, "Button 1").enabled?) 
  end
  
  def test_Button_Enabled
    $ie.text_field(:name, "entertext").fire_event("onkeyup")
    assert($ie.button(:caption, "Button 1").enabled?)   
  end
  
  def test_Button_click
    # Firing event to make button enabled
    $ie.text_field(:name, "entertext").fire_event("onKeyUp")
    # Clicking the button
    $ie.button(:caption, "Button 1").click
    assert($ie.text.include?("PASS") )
  end
  
  #onMouseOver tests
  #window status
  
  def test_no_status_bar_exception
    $ie.link(:text, "New Window No Status Bar").click
    status_bar_test_win = nil
    # Note: this test will fail if the Google toolbar popup blocker is turned on
    assert_nothing_raised { status_bar_test_win = Watir::IE.attach(:title, "Pass Page") }
    assert_raises( Watir::NoStatusBarException ) { status_bar_test_win.status }
    status_bar_test_win.close
    status_bar_test_win = nil
  end
  
  def test_page_nostatus
    assert_equal("Done", $ie.status) 
  end
  
  def test_set_page_status
    $ie.link(:text, "Check the Status").fire_event("onMouseOver")
    assert_equal("It worked", $ie.status) 
  end
  
  def test_clear_page_status
    $ie.link(:text, "Clear the Status").fire_event("onMouseOver")
    assert_equal("Done", $ie.status) 
  end
end

Version data entries

2 entries across 2 versions & 1 rubygems

Version Path
watir-1.5.5 unittests/windows/js_events_test.rb
watir-1.5.6 unittests/windows/js_events_test.rb