Re: [wtr-general] Re: Close function of watir 1.6.5 not working fine

2010-01-11 Thread Ankur Gera
Hi Tiffany,
  After closing manually IE browser i got the following error message :-

 *c:/ruby/lib/ruby/gems/1.8/gems/watir-1.6.5/lib/watir/ie-class.rb:402:in
`method_missing': unknown property or method `hw
nd' (WIN32OLERuntimeError)
HRESULT error code:0x80010108
  The object invoked has disconnected from its clients. from
c:/ruby/lib/ruby/gems/1.8/gems/watir-1.6.5/lib/wati
r/ie-class.rb:402:in `close'
  *
Sorry for the inconvenience!!!
Please let me know if u need further any more info.
Thanks & Regards,
Ankur Gera
TCS

On Tue, Jan 12, 2010 at 4:15 AM, Tiffany Fodor  wrote:

> Hi Ankur!
>
> What do you mean by the close function doesn't work fine.  Please
> include the error message and behavior you're seeing to help in
> troubleshooting the problem.
>
> Thanks!
>
> -Tiffany
>
> On Jan 11, 4:02 am, Ankur Gera  wrote:
> > Hi All,
> >  When i run the below code close function of watir 1.6.5 doesn't work
> fine
> > after handling a pop-up.But of watir 1.6.2 work fine in the same
> situation.
> > I would request to the Watir developers please resolve this problem.
> >
> > require 'watir'
> > require 'rubygems'
> > require 'win32ole'
> > require
> > 'C:\\ruby\\lib\\ruby\\gems\\1.8\\gems\\watir-1.6.2\\lib\\watir\\ie-class'
> >
> > #Note:- I have used the above require line because close function of
> Watir
> > 1.6.5 was not working fine after handling a pop-up.
> >
> > $ie=Watir::IE.new
> > $ai=WIN32OLE.new("AutoItX3.Control")
> >
> > $ie.goto("http://www.google.com/";)
> > $ie.textfield(:name,"q").set("Ruby")
> > $ie.button(:name,"btnG").click
> >
> > $ie.goto("http://www.autoitscript.com/autoit3/downloads.shtml";)
> > $ie.image(:src,/download_autoit/).click_no_wait
> >
> > $ai.WinWait("File Download - Security Warning","",30)
> > $ai.WinActivate("File Download - Security Warning")
> > $ai.ControlClick("File Download - Security Warning","","&Save")
> >
> > $ai.WinWait("Save As","",30)
> > $ai.WinActivate("Save As")
> > $ai.ControlSend("Save As","","Edit1", "C:\AutoItV3.exe")
> > $ai.ControlClick("Save As","","&Save")
> >
> > $ie.close  #Here at this place watir 1.6.5 close function doesn't work
> fine
> > after handling the above pop-up but close function of watir 1.6.2 works
> fine
> > in the same situation.
> >
> > For more information please check source code of close functions of both
> the
> > versions(1.6.5 and 1.6.2) of Watir through this path :-
> >
> > C:\ruby\lib\ruby\gems\1.8\gems\watir-1.6.5\lib\watir\ie-class.rb
> > C:\ruby\lib\ruby\gems\1.8\gems\watir-1.6.2\lib\watir\ie-class.rb
> >
> > Thanks & Regards,
> > Ankur Gera
> > TCS
>
> --
> You received this message because you are subscribed to the Google Groups
> "Watir General" group.
> To post to this group, send email to watir-general@googlegroups.com
> Before posting, please read the following guidelines:
> http://wiki.openqa.org/display/WTR/Support
> To unsubscribe from this group, send email to
> watir-general-unsubscr...@googlegroups.com
> For more options, visit this group at
> http://groups.google.com/group/watir-general
>
-- 
You received this message because you are subscribed to the Google Groups 
"Watir General" group.
To post to this group, send email to watir-general@googlegroups.com
Before posting, please read the following guidelines: 
http://wiki.openqa.org/display/WTR/Support
To unsubscribe from this group, send email to 
watir-general-unsubscr...@googlegroups.com
For more options, visit this group at 
http://groups.google.com/group/watir-general

[wtr-general] Re: Close function of watir 1.6.5 not working fine

2010-01-11 Thread Tiffany Fodor
Hi Ankur!

What do you mean by the close function doesn't work fine.  Please
include the error message and behavior you're seeing to help in
troubleshooting the problem.

Thanks!

-Tiffany

On Jan 11, 4:02 am, Ankur Gera  wrote:
> Hi All,
>  When i run the below code close function of watir 1.6.5 doesn't work fine
> after handling a pop-up.But of watir 1.6.2 work fine in the same situation.
> I would request to the Watir developers please resolve this problem.
>
> require 'watir'
> require 'rubygems'
> require 'win32ole'
> require
> 'C:\\ruby\\lib\\ruby\\gems\\1.8\\gems\\watir-1.6.2\\lib\\watir\\ie-class'
>
> #Note:- I have used the above require line because close function of Watir
> 1.6.5 was not working fine after handling a pop-up.
>
> $ie=Watir::IE.new
> $ai=WIN32OLE.new("AutoItX3.Control")
>
> $ie.goto("http://www.google.com/";)
> $ie.textfield(:name,"q").set("Ruby")
> $ie.button(:name,"btnG").click
>
> $ie.goto("http://www.autoitscript.com/autoit3/downloads.shtml";)
> $ie.image(:src,/download_autoit/).click_no_wait
>
> $ai.WinWait("File Download - Security Warning","",30)
> $ai.WinActivate("File Download - Security Warning")
> $ai.ControlClick("File Download - Security Warning","","&Save")
>
> $ai.WinWait("Save As","",30)
> $ai.WinActivate("Save As")
> $ai.ControlSend("Save As","","Edit1", "C:\AutoItV3.exe")
> $ai.ControlClick("Save As","","&Save")
>
> $ie.close  #Here at this place watir 1.6.5 close function doesn't work fine
> after handling the above pop-up but close function of watir 1.6.2 works fine
> in the same situation.
>
> For more information please check source code of close functions of both the
> versions(1.6.5 and 1.6.2) of Watir through this path :-
>
> C:\ruby\lib\ruby\gems\1.8\gems\watir-1.6.5\lib\watir\ie-class.rb
> C:\ruby\lib\ruby\gems\1.8\gems\watir-1.6.2\lib\watir\ie-class.rb
>
> Thanks & Regards,
> Ankur Gera
> TCS
-- 
You received this message because you are subscribed to the Google Groups 
"Watir General" group.
To post to this group, send email to watir-general@googlegroups.com
Before posting, please read the following guidelines: 
http://wiki.openqa.org/display/WTR/Support
To unsubscribe from this group, send email to 
watir-general-unsubscr...@googlegroups.com
For more options, visit this group at 
http://groups.google.com/group/watir-general