Sha256: 77ca9c8c66d04a3ae018b67e1a1be90e4f522fc1b03602d56f49317389d598bf

Contents?: true

Size: 993 Bytes

Versions: 2

Compression:

Stored size: 993 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_select_no_wait_text_select_list
    goto_page "selectboxes1.html"
    browser.select_list(:name,'sel1').select_no_wait(/Option 1/)
    assert_nothing_raised{
      Watir::Wait.until {browser.select_list(:name , 'sel1').selected_options.first.text == 'Option 1'}
    }
  end
end

Version data entries

2 entries across 2 versions & 2 rubygems

Version Path
watir-classic-3.0.0 unittests/no_wait_test.rb
watir-3.0.0.rc3 unittests/no_wait_test.rb