[wtr-general] Need help in autoit..

2011-02-08 Thread Priya D
Can anybody tell me how to write Ctrl+N in autoit.Send. I have the below code which doesnot work. require 'win32ole' autoit = WIN32OLE.new('AutoITX3.Control') autoit.Send({Ctrl+N}) autoit.Send({Enter}) sleep 10 Thanks Priya -- Before posting, please read http://watir.com/support. In

Re: [wtr-general] Re: Recent Stack Overflow Questions Tagged Watir

2011-02-08 Thread Željko Filipin
http://stackoverflow.com/questions/4922992/how-to-set-the-url-of-a-link-to-a-variable-using-watir -- Before posting, please read http://watir.com/support. In short: search before you ask, be nice. watir-general@googlegroups.com http://groups.google.com/group/watir-general

Re: [wtr-general] Need help in autoit..

2011-02-08 Thread Mohit
try autoit.Send(^N) instead of autoit.Send({Ctrl+N}) On Tue, Feb 8, 2011 at 12:17 PM, Priya D priya.d.sm...@gmail.com wrote: Can anybody tell me how to write Ctrl+N in autoit.Send. I have the below code which doesnot work. require 'win32ole' autoit = WIN32OLE.new('AutoITX3.Control')

[wtr-general] Re: Need help in autoit..

2011-02-08 Thread mike_sukhi
try autoit.Send(^N) instead of autoit.Send({Ctrl+N}) On Feb 8, 11:47 am, Priya D priya.d.sm...@gmail.com wrote: Can anybody tell me how to write Ctrl+N in autoit.Send. I have the below code which doesnot work. require 'win32ole'  autoit = WIN32OLE.new('AutoITX3.Control')  

[wtr-general] Re: Need help in autoit..

2011-02-08 Thread mike_sukhi
try autoit.Send(^N) instead of autoit.Send({Ctrl+N}) On Feb 8, 11:47 am, Priya D priya.d.sm...@gmail.com wrote: Can anybody tell me how to write Ctrl+N in autoit.Send. I have the below code which doesnot work. require 'win32ole'  autoit = WIN32OLE.new('AutoITX3.Control')  

Re: [wtr-general] Need help in autoit..

2011-02-08 Thread neeraj girdhar
try autoit.Send(^N) instead of autoit.Send({Ctrl+N}) t Regards, neeraj girdhar On Tue, Feb 8, 2011 at 12:17 PM, Priya D priya.d.sm...@gmail.com wrote: Can anybody tell me how to write Ctrl+N in autoit.Send. I have the below code which doesnot work. require 'win32ole' autoit =

[wtr-general] Re: Problem with selecting the item from listbox li

2011-02-08 Thread Super Kevy
Isn't autocomplete a browser based enhancement/function? Personally, I can't stand it and typically turn it off. What part of the application functionality does this really test? a) The browser is set with autocomplete on b) The browser is set with autocomplete off c) The browser never had this