[wtr-general] Re: operator question

2010-07-04 Thread Darryl Brown
Thanks Charlie On Jul 3, 2:55 pm, Charley Baker wrote: > Yep. > > On Sat, Jul 3, 2010 at 11:42 AM, Darryl Brown wrote: > > > Hello all, > > > I have a quick syntax question > > > What is the definition of ' => ' in the following context? > > ie.frame(:index, 3).frame(:index, 2).link(:text => 'Web

[wtr-general] Re: farming automation on watir[parallel testing]

2010-07-04 Thread joedio
Christina, The short answer to your questions is Yes. You can do all that with Ruby. Ruby can run multiple threads, you can write code with Ruby to open FTP, SSH or other remote file transfer methods, and you could definitely write Ruby code to do that, but its not a part of Watir per se. The tr

[wtr-general] Re: Iterate through radio buttons

2010-07-04 Thread joedio
Shlomit, Let's check the attributes of each of the radios. Perhaps in actuality an attribute is NOT set as one would expect it to be. Run this code prior to the previous code block and look at the results. Feel free to add puts statements for any additional attributes you may want to collect.

Re: [wtr-general] Iterate through radio buttons

2010-07-04 Thread arihan sinha
count the no of radio buttons with certain ids first then use the for loop for this On Thu, Jul 1, 2010 at 12:08 PM, Shlomit Gazit wrote: > I am trying to iterate through radio buttons in the page, but I dont > want to iterate through all the radios in the page, only those with > certain id. > Ho