Sha256: 0978e62e60952164ebb8801f6042882a1531cc8767f7201f378171c20999245a

Contents?: true

Size: 1.46 KB

Versions: 18

Compression:

Stored size: 1.46 KB

Contents

require 'mechanize/test_case'

class TestMechanizeFormSelectList < Mechanize::TestCase

  def setup
    super

    page = html_page <<-BODY
<form name="form1" method="post" action="/form_post">
  <select name="select">
    <option value="1">Option 1</option>
    <option value="2" selected>Option 2</option>
    <option value="3">Option 3</option>
    <option value="4">Option 4</option>
    <option value="5">Option 5</option>
    <option value="6">Option 6</option>
  </select>
</form>
    BODY

    form = page.forms.first
    @select = form.fields.first
  end

  def test_option_with
    option = @select.option_with :value => '1'

    assert_equal '1', option.value
  end

  def test_options_with
    options = @select.options_with :value => /[12]/

    assert_equal 2, options.length
  end

  def test_query_value
    assert_equal [%w[select 2]], @select.query_value

    @select.select_all

    assert_equal [%w[select 6]], @select.query_value
  end

  def test_select_all
    @select.select_all

    assert_equal "6", @select.value
  end

  def test_select_none
    @select.select_none

    assert_equal "1", @select.value
  end

  def test_selected_options
    assert_equal [@select.options[1]], @select.selected_options

    @select.options.last.click

    assert_equal [@select.options.last], @select.selected_options
  end

  def test_value
    assert_equal "2", @select.value
  end

  def test_value_equals
    @select.value = %w[a 1 2]

    assert_equal "a", @select.value
  end

end

Version data entries

18 entries across 18 versions & 4 rubygems

Version Path
mechanize-2.5.1 test/test_mechanize_form_select_list.rb
mechanize-2.5 test/test_mechanize_form_select_list.rb
mechanize-2.4 test/test_mechanize_form_select_list.rb
frameworks-capybara-0.2.0.rc6 vendor/bundle/ruby/1.8/gems/mechanize-2.3/test/test_mechanize_form_select_list.rb
frameworks-capybara-0.2.0.rc5 vendor/bundle/ruby/1.8/gems/mechanize-2.3/test/test_mechanize_form_select_list.rb
frameworks-capybara-0.2.0.rc4 vendor/bundle/ruby/1.8/gems/mechanize-2.3/test/test_mechanize_form_select_list.rb
frameworks-capybara-0.2.0.rc3 vendor/bundle/ruby/1.8/gems/mechanize-2.3/test/test_mechanize_form_select_list.rb
frameworks-capybara-0.2.0.rc2 vendor/bundle/ruby/1.8/gems/mechanize-2.3/test/test_mechanize_form_select_list.rb
mechanize-2.3 test/test_mechanize_form_select_list.rb
mechanize-2.2.1 test/test_mechanize_form_select_list.rb
mechanize-2.2 test/test_mechanize_form_select_list.rb
mechanize-2.1.1 test/test_mechanize_form_select_list.rb
domo-0.0.5 vendor/bundle/ruby/1.9.1/gems/mechanize-2.1/test/test_mechanize_form_select_list.rb
diamond-mechanize-2.4 test/test_mechanize_form_select_list.rb
diamond-mechanize-2.3 test/test_mechanize_form_select_list.rb
diamond-mechanize-2.1 test/test_mechanize_form_select_list.rb
mechanize-2.1 test/test_mechanize_form_select_list.rb
mechanize-2.1.pre.1 test/test_mechanize_form_select_list.rb