RE: [Wtr-general] RuntimeError: failed to get IEnum InterfaceHRESULT error code:0x80004002

2005-08-12 Thread Pascal SERODES
My script is very simple, The error is as soon i try to set a value in a text field (line number 24) -# # test watir pour sioux #

RE: [Wtr-general] RuntimeError: failed togetIEnumInterfaceHRESULTerror code:0x80004002

2005-08-12 Thread Pascal SERODES
Yes the navigatio seems OK, the error raised even if i try to get the content of a text field, Ie.text_field(:name, 'name').getContents() Again here the stack trace: Microsoft Windows XP [version 5.1.2600] (C) Copyright 1985-2001 Microsoft Corp. D:\siouxWatir\scriptst2.rb ## Debut test: Sioux

Re: [Wtr-general] Help Lib Path incorrect?

2005-08-12 Thread Bret Pettichord
You are using relative paths: these are relative to the current directory -- not the location of the file. The current directory is where the file is run from. When you run from the console, you are probably running from the directory containing the file. By default, eclipse runs from the top

Re: [Wtr-general] test::unit question

2005-08-12 Thread jkohl
This may have been covered in the mailing list before, I searched all the messages I have and didn't find anything (is there a reason there isn't a searchable archive for this mailing list?) You can search it using Google: site:rubyforge.org [Wtr-general] your search term I am a Watir

RE: [Wtr-general] WATIR is slow ???

2005-08-12 Thread Michael Kelly
Title: Message Have you tried "ie.set_fast_speed()"? -=michael=- -- Michael Kelly Sr. Software Engineer Eleven Wireless Inc. - The Possibilities are Wireless http://www.elevenwireless.com -Original Message-From: [EMAIL PROTECTED] [mailto:[EMAIL PROTECTED] On Behalf Of

RE: [Wtr-general] Help read data in table with Row Span

2005-08-12 Thread Bret Pettichord
Hue, I think i actually wrote the original table to_a code. I wrote it for a specific table, and Paul checked it in. It was never intended to work in the general case. I don't quite understand why Paul says it couldn't be fixed the way you want it to work. I think his concern is that it

Re: [Wtr-general] WATIR is slow ???

2005-08-12 Thread Jared Nuzzolillo
Yes, and I even tried hiding IE with the -b flag and with ie.ie.Visible = false.While it did provide a significant speed increase, it was still taking approx 3.5 minutes to execute. I really wanted to avoid supporting the Ruby is too slow myth when I showed the tool to my boss, so I had to speed

Re: [Wtr-general] clearSecurityAlertBox() doesn't work?

2005-08-12 Thread saud aziz
Thanks to all. However, this doesn't resolve my second 'verfication' case problem. Please take a look at the following code and help if you can. Thanks in advance. 2) How can i set it to check whether it is on expected URL or not? I have assert ie.url in my script but that didn't seem to work

[Wtr-general] Access is denied and Exception Errors - SUCCESS!

2005-08-12 Thread Tuyet Cong-Ton-Nu
The problem is actually a security issue on the machine that is executing the script! We fixed the access is denied issue by adding the URL that is causing the problem as a trusted site. This is done in Tools/Internet Options/Security/Trusted Sites (then add the URL). No more access is

RE: [Wtr-general] RuntimeError: failed togetIEnumInterfaceHRESULTerror code:0x80004002

2005-08-12 Thread Bret Pettichord
This is very puzzling to me. It doesn't look like Watir can't get to the DOM tree. It is failing on ie.document.body.all This returns a COM object, but i has no IEnum Interface. It seems like maybe you are running a very old version of IE. Watir needs 5.5 or later. But i think you get that

RE: [Wtr-general] Access is denied and Exception Errors - SUCCESS!

2005-08-12 Thread Jonathan Kohl
Cool! Can we add that to the FAQ? Good work. -Jonathan From: [EMAIL PROTECTED] [mailto:[EMAIL PROTECTED] On Behalf Of Tuyet Cong-Ton-NuSent: August 12, 2005 4:47 PMTo: wtr-general@rubyforge.orgSubject: [Wtr-general] Access is denied and Exception Errors - SUCCESS!