Hi Aidy, <br><br>&nbsp; You can send tabs through AutoIt. Take a look at WindowHelper.rb. You can easily extend it with something like this:<br>class WindowHelper<br>&nbsp; def push_tab<br>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; @autoit.WinWait &quot;Your dialog title&quot;, &quot;&quot;
<br>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; @autoit.Send &quot;{TAB}&quot;<br>&nbsp; end<br>end<br><br>-Charley<br><br><div><span class="gmail_quote">On 7/12/06, <b class="gmail_sendername">Adrian Rutter</b> &lt;<a href="mailto:Adrian.Rutter@tnt.com">Adrian.Rutter@tnt.com
</a>&gt; wrote:</span><blockquote class="gmail_quote" style="border-left: 1px solid rgb(204, 204, 204); margin: 0pt 0pt 0pt 0.8ex; padding-left: 1ex;"><br>Hi,<br><br>Is there a better way of sending tabs through Watir than using the windows
<br>scripting host?<br><br> require 'win32ole'<br> wsh = WIN32OLE.new(&quot;WScript.Shell&quot;)<br>&nbsp;&nbsp;i=0<br>&nbsp;&nbsp;loop do<br>&nbsp;&nbsp;&nbsp;&nbsp;wsh.SendKeys &quot;{TAB}&quot;<br>&nbsp;&nbsp;&nbsp;&nbsp;i += 1<br>&nbsp;&nbsp;&nbsp;&nbsp;break unless i &lt;=14<br>&nbsp;&nbsp;end<br><br>cheers
<br><br>aidy<br><br><br><br>---------------------------------------------------------------------------------------------------------------<br>This message and any attachment are confidential and may be privileged or otherwise protected from disclosure.
<br>If you are not the intended recipient, please telephone or email the sender and delete this message and any attachment from your system.<br>If you are not the intended recipient you must not copy this message or attachment or disclose the contents to any other person.
<br>---------------------------------------------------------------------------------------------------------------<br>_______________________________________________<br>Wtr-general mailing list<br><a href="mailto:Wtr-general@rubyforge.org">
Wtr-general@rubyforge.org</a><br><a href="http://rubyforge.org/mailman/listinfo/wtr-general">http://rubyforge.org/mailman/listinfo/wtr-general</a><br></blockquote></div><br>