Re: how to click the Buttons in Forms

I still get an error if I use:
$ie.frame(“bottom”).button(:value, /Login/).click

  1. Error:
    test_01_LoginTestCase(TC_pulldownBox_Links_Clicks):
    Watir::Exception::UnknownObjectException: Unable to locate object, using
    value and (?-mix:Login)
    c:/ruby/lib/ruby/site_ruby/1.8/watir.rb:1928:in assert_exists' c:/ruby/lib/ruby/site_ruby/1.8/watir.rb:2009:inclick’
    Login_test1.rb:24:in `test_01_LoginTestCase’

1 tests, 0 assertions, 0 failures, 1 errors

Exit code: 1


Try to use the .submit method:

 $ie.frame("bottom").button(:name, /Login/).submit

And got the error

  1. Error:
    test_01_LoginTestCase(TC_pulldownBox_Links_Clicks):
    NoMethodError: undefined method submit' for #<Watir::Button:0x2cbdd54> Login_test1.rb:24:intest_01_LoginTestCase’