Re: [Wtr-general] Handling with forms in watir.

2006-03-10 Thread Zeljko Filipin
It would help if you provided html snippet of your page, but Watirtells you that it can not find object with text "Nebo GA 1.0". This isstrange, because you are trying to click link with text "Nebo GA 1.0 "(notice extra space at the end). Change $IE0.link( :text, "Nebo GA 1.0 ").click to $IE0.li

Re: [Wtr-general] Wtr-general Digest, Vol 28, Issue 15

2006-03-10 Thread Zeljko Filipin
Rails? Visit http://www.rubyonrails.org/. They have mailing list, butthis is the wrong one. Also, if you copy/paste your error somebodycould actually help you, I think they can not read minds (or is itjust me). :) If you want to install Watir, your error would really help. Do not thake this perso

[Wtr-general] Handling with form in watir

2006-03-10 Thread Tanushree Bhoi
Hi Zeljko, Yeah thats true.Because of that extra space watir was not able to recognize the text.I was recording the events using watir webrecorder0.4.It was recording one extra space for text.Here i am sending code of _javascript_ file. Can i automate it using formname. Here is the script recorded

[Wtr-general] FireWatir release alpha v1.0

2006-03-10 Thread Angrez Singh
Hi Bret,I have committed the code for 'FireWatir' in branch named 'firefox'. Now we can run WATiR scripts against 'Firefox'  browser. Anyone who wants to have a quick preview can download the code from this branch. For using the version follow the instructions provided in the 'installation doc' pro

Re: [Wtr-general] Problem enumerating forms

2006-03-10 Thread Bret Pettichord
On 3/3/06, Michael Bolton <[EMAIL PROTECTED]> wrote: I'm working out of Head, rather than out of 1.4, but when I try    $IE0.form.methods   I get this:   ArgumentError: wrong number of arguments (0 for 1)    from (irb):10:in `form'    from (irb):10    from ♥:0   which gives me

Re: [Wtr-general] FireWatir release alpha v1.0

2006-03-10 Thread Thomas Healy
I'm wondering what versions of Firefox this is designed to work with?   Thanks   Thom From: [EMAIL PROTECTED] [mailto:[EMAIL PROTECTED] On Behalf Of Angrez SinghSent: Friday, March 10, 2006 1:10 PMTo: Bret Pettichord; wtr-general@rubyforge.orgSubject: [Wtr-general] FireWatir release alph

Re: [Wtr-general] Problem enumerating forms

2006-03-10 Thread Bret Pettichord
On 3/3/06, Marcus Tettmar <[EMAIL PROTECTED]> wrote: Hi,Why does this fail:  $IE0.goto("http://www.google.com/")   $IE0.form( :name, "f").text_field( :name, "q").set("ruby")  $IE0.form( :name, "f").button( :name, "btnG").click This fails with:WIN32OLERuntimeError: Failed to get IEnum Interface    H

[Wtr-general] Ruby-Watir test case organization (dir hierarchy)

2006-03-10 Thread Kalen Howell
Greetings All: First off; I am fairly new to Ruby and Watir (3 - 4 months), and I really excited about its potential. I am also very new to the user group. I have done some research, but I am unable to find the answers to my problem, so I apologize if this is a redundent topic. Now, lets get

[Wtr-general] Implementing concurrent Unit Test Cases in Ruby and Watir

2006-03-10 Thread Kalen Howell
Can anyone point me to an example of executing a test case in multiple threads concurrently? There are 10 instances of the application under tests running on 4 different boxes. I am attempting to build a release night test that will use the url and verify what instance of the web app we have

Re: [Wtr-general] Handling with forms in watir.

2006-03-10 Thread Bret Pettichord
On 3/10/06, Tanushree Bhoi <[EMAIL PROTECTED]> wrote: Hi I am using Watir Web Recorder version 0.4 to record click events of our own site. For recording, web recorder is doing its job properly but watir is not properly playing it back. does It has limitation of identify forms.For playing it back i

[Wtr-general] Help with Watir/XPath

2006-03-10 Thread Greg McShea
Hi,   I've reviewed all the XPath related posts here and am still unable to get a simple statement with xpath _expression_ working. Here is what I have done to setup my installation:   1. Installed ruby 1.8.2 2. Installed watir 1.4.1 using windows installer 3. Installed REXML 3.1.3 3. Dow

Re: [Wtr-general] Help with Watir/XPath

2006-03-10 Thread Greg McShea
Review older messages again I see that the elements.rb and functions.rb are only supposed to be copied to C:\ruby\lib\ruby\1.8\rexml. I have done this and restored the original versions of the files to C:\ruby\lib\ruby\site_ruby\1.8\rexml. Now when I run my script I get a different error:  

[Wtr-general] Moving to OpenQA.org

2006-03-10 Thread Bret Pettichord
We are in the process of moving many of the services that have been provided on RubyForge.org over to OpenQA.org. You'll be seeing more and more signs of this, so i thought i would send out a quick status report. If you have questions or want to help, please speak up. Repository The source reposito

Re: [Wtr-general] Moving to OpenQA.org

2006-03-10 Thread Sergio Pinon
I would be able to help.   From: [EMAIL PROTECTED] [mailto:[EMAIL PROTECTED] On Behalf Of Bret Pettichord Sent: Friday, March 10, 2006 3:46 PM To: wtr-general@rubyforge.org Subject: [Wtr-general] Moving to OpenQA.org   We are in the process of moving many of the services that

Re: [Wtr-general] FireWatir release alpha v1.0

2006-03-10 Thread Dave Liebreich
> I have committed the code for 'FireWatir' in branch named 'firefox'. > Now we can run WATiR scripts against 'Firefox' browser. Yay! Congrats Angrez on getting this to work. Angrez used JSSH as a remote-control mechanism for Firefox. For those interested in porting Watir to other platforms, I

Re: [Wtr-general] Moving to OpenQA.org

2006-03-10 Thread Bret Pettichord
On 3/10/06, Sergio Pinon <[EMAIL PROTECTED]> wrote: I would be able to help.Glad to hear it. Let us know what you want to help with. What can you do? ___ Wtr-general mailing list Wtr-general@rubyforge.org http://rubyforge.org/mailman/listin

[Wtr-general] FAQ migrated

2006-03-10 Thread Bret Pettichord
The WATIR FAQ is now located here:http://wiki.openqa.org/display/WTR/FAQNote that one of the new features of the new wiki (Confluence) is that you can directly link to anchors in a page. E.g. If someone asks about how to dismiss a security alert, we can direct them to http://wiki.openqa.org/displa

Re: [Wtr-general] FireWatir release alpha v1.0

2006-03-10 Thread Angrez Singh
Hi, I'm wondering what versions of Firefox this is designed to work with?\ Sorry I forgot to mention the versions. I have tried it on Firefox 1.5 & 1.5.0.1. I am not sure if it works versions less than this.Regards,Angrez ___ Wtr-general mailing list Wtr

Re: [Wtr-general] Help with Watir/XPath

2006-03-10 Thread Angrez Singh
Hi, Try the following XPath:ie.button(:xpath, "//button[contains(.,'Delete')]")What I think wrong with you xpath is that you are trying to access button which has attribute called 'value' whose value is 'Delete'. But there is no button with attribute 'value'. Try the above XPath & let me know if it

Re: [Wtr-general] FireWatir release alpha v1.0

2006-03-10 Thread Bret Pettichord
Could you please add a page to our new wiki about the Firefox release with answers to questions like this?BretOn 3/11/06, Angrez Singh < [EMAIL PROTECTED]> wrote:Hi, I'm wondering what versions of Firefox this is designed to work with?\ Sorry I forgot to mention the versions. I have tried it on F

Re: [Wtr-general] FireWatir release alpha v1.0

2006-03-10 Thread Angrez Singh
Hi Bret,Could you please add a page to our new wiki about the Firefox release with answers to questions like this? ok..Regards,Angrez ___ Wtr-general mailing list Wtr-general@rubyforge.org http://rubyforge.org/mailman/listinfo/wtr-general