Sha256: 23b575de33fee60040bfcccbc376ebdadacdb81d2c4de30ab7a530eece3c786c

Contents?: true

Size: 1.53 KB

Versions: 5

Compression:

Stored size: 1.53 KB

Contents

require File.expand_path(File.join(File.dirname(__FILE__), "helper"))

class TestTextArea < Test::Unit::TestCase
  def setup
    @agent = WWW::Mechanize.new
    @page  = @agent.get("http://localhost/tc_textarea.html")
  end

  def test_empty_text_area
    form = @page.forms.name('form1').first
    assert_equal('', form.fields.name('text1').value)
    form.text1 = 'Hello World'
    assert_equal('Hello World', form.fields.name('text1').value)
    page = @agent.submit(form)
    assert_equal(1, page.links.length)
    assert_equal('text1:Hello World', page.links[0].text)
  end

  def test_non_empty_textfield
    form = @page.forms.name('form2').first
    assert_equal('sample text', form.fields.name('text1').value)
    page = @agent.submit(form)
    assert_equal(1, page.links.length)
    assert_equal('text1:sample text', page.links[0].text)
  end

  def test_multi_textfield
    form = @page.forms.name('form3').first
    assert_equal(2, form.fields.name('text1').length)
    assert_equal('', form.fields.name('text1')[0].value)
    assert_equal('sample text', form.fields.name('text1')[1].value)
    form.text1 = 'Hello World'
    assert_equal('Hello World', form.fields.name('text1')[0].value)
    assert_equal('sample text', form.fields.name('text1')[1].value)
    page = @agent.submit(form)
    assert_equal(2, page.links.length)
    link = page.links.text('text1:sample text')
    assert_not_nil(link)
    assert_equal(1, link.length)

    link = page.links.text('text1:Hello World')
    assert_not_nil(link)
    assert_equal(1, link.length)
  end
end

Version data entries

5 entries across 5 versions & 1 rubygems

Version Path
mechanize-0.8.0 test/test_textarea.rb
mechanize-0.8.3 test/test_textarea.rb
mechanize-0.8.1 test/test_textarea.rb
mechanize-0.8.2 test/test_textarea.rb
mechanize-0.8.4 test/test_textarea.rb