Sha256: 448a91a3754275e44e57e0f5d4e8fa69c9044ce6e25b67f9d11c4bd812278da2

Contents?: true

Size: 1.62 KB

Versions: 1

Compression:

Stored size: 1.62 KB

Contents

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

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

class TC_JSEvents < Test::Unit::TestCase
  def setup
    goto_page "javascriptevents.html"
  end
  
  def test_Button_disabled
    assert_false( browser.button(:caption, "Button 1").enabled?) 
  end
  
  def test_Button_Enabled
    browser.text_field(:name, "entertext").fire_event("onkeyup")
    assert(browser.button(:caption, "Button 1").enabled?)   
  end
  
  def test_Button_click
    # Firing event to make button enabled
    browser.text_field(:name, "entertext").fire_event("onKeyUp")
    # Clicking the button
    browser.button(:caption, "Button 1").click
    assert(browser.text.include?("PASS") )
  end
  
  #onMouseOver tests
  #window status
  
  def test_no_status_bar_exception
    browser.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", browser.status) 
  end
  
  def test_set_page_status
    browser.link(:text, "Check the Status").fire_event("onMouseOver")
    assert_equal("It worked", browser.status) 
  end
  
  def test_clear_page_status
    browser.link(:text, "Clear the Status").fire_event("onMouseOver")
    assert_equal("Done", browser.status) 
  end
end

Version data entries

1 entries across 1 versions & 1 rubygems

Version Path
watir-1.6.5 unittests/windows/js_events_test.rb