Hi all, <br>I am getting an unfamiliar error and hoping someone can lend a hand. <br><br>I&#39;m currently using Watir 1.5.1.1145<br>I just got:<br><br><blockquote style="border-left: 1px solid rgb(204, 204, 204); margin: 0pt 0pt 0pt 0.8ex; padding-left: 1ex;" class="gmail_quote">
&gt;ruby create_many_messages.rb<br>Loaded suite create_many_messages<br>Started<br>E<br>Finished in 4.544 seconds.<br><br>&nbsp; 1) Error:<br>test_send_many_messages(TC_SendManyMessages):<br>WIN32OLERuntimeError: unknown property or method `readOnly&#39;
<br>&nbsp;&nbsp;&nbsp; HRESULT error code:0x80020006<br>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; Unknown name.<br>&nbsp;&nbsp;&nbsp; (eval):3:in `invoke&#39;<br>&nbsp;&nbsp;&nbsp; (eval):3:in `readonly?&#39;<br>&nbsp;&nbsp;&nbsp; c:/ruby/lib/ruby/gems/1.8/gems/watir-1.5.1.1145/./watir.rb:3798:in `assert_not_readonly&#39;
<br>&nbsp;&nbsp;&nbsp; c:/ruby/lib/ruby/gems/1.8/gems/watir-1.5.1.1145/./watir.rb:3884:in `set&#39;<br>&nbsp;&nbsp;&nbsp; create_many_messages.rb:17:in `test_send_many_messages&#39;<br><br>1 tests, 0 assertions, 0 failures, 1 errors<br>&gt;Exit code: 1
<br></blockquote><br>After trying:<br><br><blockquote style="border-left: 1px solid rgb(204, 204, 204); margin: 0pt 0pt 0pt 0.8ex; padding-left: 1ex;" class="gmail_quote">$LOAD_PATH.unshift File.join(File.dirname(__FILE__), &#39;..&#39;) if $0 == __FILE__
<br>require &#39;unittests/setup&#39;<br><br>class TC_SendManyMessages &lt; Test::Unit::TestCase<br>&nbsp; include Watir<br>&nbsp; <br>&nbsp; $email = &quot;<a href="mailto:jeff.fry@gmail.com">jeff.fry@gmail.com</a>&quot;<br>&nbsp; $pw = &quot;password&quot;
<br>&nbsp;<br>&nbsp; def test_send_many_messages<br>&nbsp;&nbsp;&nbsp; $ie.goto(&quot;<a href="http://carolinerr.realgirlsmedia.local/public/login/show_login_page">http://carolinerr.realgirlsmedia.local/public/login/show_login_page</a>&quot;) <br>
&nbsp;&nbsp;&nbsp; $ie.text_field(:id ,&quot;label_user_email&quot;).set($email)&nbsp;&nbsp;&nbsp; # THIS IS THE LINE IT CHOKES ON<br>&nbsp;&nbsp;&nbsp; $ie.text_field(:id ,&quot;label_user_password&quot;).set($pw)<br>&nbsp;&nbsp;&nbsp; $ie.link(:name, &quot;login_button&quot;).click
<br>&nbsp; end #def<br>&nbsp; <br>&nbsp;end<br></blockquote><br>A search of the archives gave me <a href="http://forums.openqa.org/thread.jspa?messageID=10228">http://forums.openqa.org/thread.jspa?messageID=10228</a> ...but this seems to have been fixed in 9/06, so I think I must be hitting something different.
<br><br>Am I screwing something up here?<br><br>BTW, our site is public so the code above should execute for you...just as poorly as it executes for me. ;0)<br><br>Thanks in advance for any help,<br>Jeff<br><br><br>BTW, I remember in the past watir left IE open unless I explicitly called 
ie.close. When I&#39;m coding, I often like to leave IE open to see where I bombed. Is there a way I can switch back to not automagically cleaning up while I&#39;m coding? I did a quick search of watir.rb but didn&#39;t see anything promising. Thanks again.