Sha256: 745bd24c73adb6dfa500884543c11d519a6886ee8ccb69248cadbf7b08f8a6d1
Contents?: true
Size: 982 Bytes
Versions: 10
Compression:
Stored size: 982 Bytes
Contents
$LOAD_PATH.unshift File.join(File.dirname(__FILE__), '..') unless $SETUP_LOADED require 'unittests/setup' class TC_No_Wait_Commands < Test::Unit::TestCase def test_fire_event_no_wait goto_page "javascriptevents.html" browser.text_field(:index, 0).fire_event_no_wait("onkeyup") assert_nothing_raised{ Watir::Wait.until {browser.div(:id, 'event_name').text == 'onkeyup'} } end def test_set_no_wait_text_field goto_page "textfields1.html" browser.text_field(:name, "text1").set_no_wait("watir IE Controller") assert_nothing_raised{ Watir::Wait.until {browser.text_field(:name, "text1").value == "watir IE Controller"} } end def test_set_no_wait_text_select_list goto_page "selectboxes1.html" browser.select_list(:name,'sel1').set_no_wait(/Option 1/) assert_nothing_raised{ Watir::Wait.until {browser.select_list(:name , 'sel1').selected_options.first == 'Option 1'} } end end
Version data entries
10 entries across 10 versions & 1 rubygems