Re: [Wtr-general] watirmaker unsupported DEBUG statements

2006-10-03 Thread Bret Pettichord
Matthew Hailstone wrote: > My environment: > watir 1.4.1 > ruby 1.8.5 (2006-08-25) > >> I appreciate your response. I know watirmaker may not be very well >> supported, but I want to draw attention to the errors happening here. >> I may be using watirmaker, but I think the errors are because of

Re: [Wtr-general] Joining two variables

2006-10-03 Thread Astha Raj
Thank you everyone. I got that. Sorry for a silly question ;)   -Original Message- From: [EMAIL PROTECTED] [mailto:[EMAIL PROTECTED] On Behalf Of Yi, Lawrence Sent: Tuesday, October 03, 2006 3:51 PM To: wtr-general@rubyforge.org Subject: Re: [Wtr-general] Joining two variables  

Re: [Wtr-general] Joining two variables

2006-10-03 Thread Yi, Lawrence
Hi Astha, What you wrote should work, however, you might want to check for the double slashes. Regards, Lawrence. -Original Message- From: [EMAIL PROTECTED] [mailto:[EMAIL PROTECTED] On Behalf Of Astha Raj Sent: Wednesday, 4 October 2006 4:18 To: wtr-general@rubyforge.org Subject: [Wtr-g

Re: [Wtr-general] Joining two variables

2006-10-03 Thread Astha Raj
$base_url = ‘http://www.google.com/’ $about_url = $base_url + ‘/intl/en/about.html’   Actually this worked.   -Original Message- From: [EMAIL PROTECTED] [mailto:[EMAIL PROTECTED] On Behalf Of Astha Raj Sent: Tuesday, October 03, 2006 11:18 AM To: wtr-general@rubyforge.org Subj

Re: [Wtr-general] Joining two variables

2006-10-03 Thread Charley Baker
That's pretty much it. You've got and ending slash and a beginning on your strings which will make http://www.google.com//intl/en/about.html Otherwise it seems fine, is there some problem you're encountering? -Charley On 10/3/06, Astha Raj <[EMAIL PROTECTED]> wrote: > Hi All, > > This is what I w

[Wtr-general] Carl L Shaulis is out of the office.

2006-10-03 Thread carl . l . shaulis
I will be out of the office starting 10/03/2006 and will not return until 10/04/2006. If you need immediate assistance please try my cell phone at 512-560-5773. Thanks! -- "NOTICE: The information contained in this electronic mail transmission is intended by Convergys Corporation for the us

Re: [Wtr-general] Joining two variables

2006-10-03 Thread Paul Carvalho
Hello Astha, you would do it in Ruby just about exactly as you have suggested.I would suggest a minor change to your data content though.  You should either remove the final slash (/) from the first variable, or the first slash from the second.  Otherwise your built-up URL will look like:   $about_

Re: [Wtr-general] Joining two variables

2006-10-03 Thread Chris McMahon
$base_url = 'http://www.google.com/'$about_url = $base_url + '/intl/en/about.html' You should really try this yourself before asking here:  C:\Documents and Settings\cmcmahon>irbirb(main):001:0> $base_url = "http://www.google.com "=> "http://www.google.com"irb(main):002:0> $about_url =  "/intl/en/a

Re: [Wtr-general] Fwd: Managing the Watir Project -- Wikipedia entry

2006-10-03 Thread Chris Morris
Bret Pettichord wrote: > I've been getting some private emails from people who are upset by this. > But the only thing that will convince me to change my mind about putting > stuff in contrib is unit tests. FWIW, I agree with you on this :-) I usually barely skim the email list, but this thread

[Wtr-general] Joining two variables

2006-10-03 Thread Astha Raj
Hi All, This is what I want to do. I want the base URL of the site to be a variable and to get other pages, I could create varaibles attaching to the base. So that if I have to change the URL, I can simply change the base variable. Is there any way I can do this – something like below? $base_u

[Wtr-general] Joing two variables

2006-10-03 Thread Astha Raj
Hi All,   This is what I want to do. I want the base URL of the site to be a variable and to get other pages, I could create varaibles attaching to the base.   Is there any way I can do this – something like below?   $base_url = ‘http://www.google.com/’   $about_url = $base_url + ‘

Re: [Wtr-general] watirmaker unsupported DEBUG statements

2006-10-03 Thread Matthew Hailstone
My environment: watir 1.4.1 ruby 1.8.5 (2006-08-25) Matthew On 10/3/06, Matthew Hailstone <[EMAIL PROTECTED]> wrote: > I appreciate your response. I know watirmaker may not be very well > supported, but I want to draw attention to the errors happening here. > I may be using watirmaker, but I thin

Re: [Wtr-general] watirmaker unsupported DEBUG statements

2006-10-03 Thread Matthew Hailstone
I appreciate your response. I know watirmaker may not be very well supported, but I want to draw attention to the errors happening here. I may be using watirmaker, but I think the errors are because of watir's lack of support in multi-frame sites using extensive javascript. That is why I used the G

Re: [Wtr-general] unable to use Click_no_wait on buttons inside a frame.

2006-10-03 Thread Cain, Mark
This (I believe) was fixed 1095.  You can download the latest gem at: http://wiki.openqa.org/display/WTR/Development+Builds   --Mark   From: [EMAIL PROTECTED] [mailto:[EMAIL PROTECTED] On Behalf Of Alan Ark Sent: Monday, October 02, 2006 2:53 PM To: wtr-general@rubyfor