I am stomped by a simple click command for the following fragment
<TR>
<TD>
<P><INPUT TYPE="SUBMIT" NAME="Send" VALUE="SEND">
<INPUT TYPE="RESET" NAME="Clear" VALUE="Clear">
</TD>
</TR>
The following watir line does not seem to work
browser.button(:name=>'Send').click
I get
/.rvm/gems/ruby-1.9.3-p194/gems/watir-webdriver-0.6.1/lib/watir-webdriver/elements/element.rb:365:in ``assert_exists': unable to locate element, using {:name=>"Send", :tag_name=>"button"} (Watir::Exception::UnknownObjectException)
have tried different combination of :name and :value.
