[Wtr-general] (no subject)

2007-04-23 Thread SHALINI GUPTA
[EMAIL PROTECTED] ___ Wtr-general mailing list Wtr-general@rubyforge.org http://rubyforge.org/mailman/listinfo/wtr-general

[Wtr-general] (no subject)

2006-09-26 Thread Michael Ehrich
Hi, i got a page with two frames and i want watir to change the url of one of those frames. I thought ie.frame(frame_name).goto(url) would do so but it doesnt. Anyone an idea or a solution for my problem ? sorry about the qoutes but my mailprogramm is not able to put both qoutes at

[Wtr-general] (no subject)

2005-12-28 Thread Asmita Srivastava
Hi,We are trying to use Watir for testing our application and there are two majarissues we are facing at present. First one is in catching the navigation exception or other system exception. Second is while accessing the the contents of iframe which changes dynamically.Please, if anyone

Re: [Wtr-general] (no subject)

2005-12-28 Thread Atilla Ozgur
What do you mean by catching the navigation exception or other system exception. On 12/28/05, Asmita Srivastava [EMAIL PROTECTED] wrote: Hi, We are trying to use Watir for testing our application and there are two majar issues we are facing at present. First one is in catching the navigation

[Wtr-general] (no subject)

2005-09-02 Thread Boyt, Darrel
Thanks, Bret. Works as advertised! Darrel Boyt Systems Analyst Anteon Corporation Montgomery, Alabama At 11:30 AM 9/2/2005, Bret Pettichord wrote: No. I basically agree. We just haven't gotten there yet. For now, try these: ie.frame(...).divs.show ie.frame(...).forms.show

RE: [Wtr-general] (no subject)

2005-07-20 Thread Zeljko Filipin
require 'first_script.rb' require 'second_script.rb' ... Zeljko From: [EMAIL PROTECTED] [mailto:[EMAIL PROTECTED] On Behalf Of boni udaySent: Wednesday, July 20, 2005 9:56 AMTo: ruby formSubject: [Wtr-general] (no subject) hi how to call 2 or more ruby scripts from a single script

Re: [Wtr-general] (no subject)

2005-07-20 Thread Raghu Venkataramana
load('script_path1') load('script_path2', true) from anywhere in the script . (The second boolean variable indicates that you want your current script to 'use' the variables, scoping etc. from the loaded script') Raghu boni uday wrote: hi how to call 2 or more ruby scripts from a single