[Wtr-general] Watir on Rails

2006-09-07 Thread Dave Hoover
I have just released a Ruby on Rails Plugin that allows for easy Watir testing in Rails. To install the plugin in your Rails project, execute ./script/plugin install svn://rubyforge.org/var/svn/watir-on-rails You can then use the generator to get you started on writing your first Watir on

Re: [Wtr-general] Watir on Rails

2006-09-07 Thread David Schmidt
Dave, Very nice! I notice that your example at http://watir-on-rails.rubyforge.org/ tests the URL for the local development Rails app on the default port (http://localhost:3000/). Does your plugin start the web server when you do the rake test:watir or do you have to ensure that the web

Re: [Wtr-general] Watir on Rails

2006-09-07 Thread Dave Hoover
You need to ensure that the web server is running in test mode. On 9/7/06, David Schmidt [EMAIL PROTECTED] wrote: Dave, Very nice! I notice that your example at http://watir-on-rails.rubyforge.org/ tests the URL for the local development Rails app on the default port

[Wtr-general] Hi watir problem

2006-09-07 Thread ykrish
Hi I am a newbie to watir and really love working with watir now. i had installed the waitr 1.4 which was running really well. now as i wanted to check out 'firewatir' which does not run on 1.4 i had to download the version 1.5 so here are the steps that i have followed. I have done an svn check

Re: [Wtr-general] Hi watir problem

2006-09-07 Thread Zeljko Filipin
Uninstall ruby, install it again, then install watir gem.Ċ½eljko ___ Wtr-general mailing list Wtr-general@rubyforge.org http://rubyforge.org/mailman/listinfo/wtr-general

[Wtr-general] right click???

2006-09-07 Thread David
Here I go with another newb question, how can you do a right click? instead of .click would it be .rightclick? I do look for the answers before I post these things, but im lost again. - Posted via Jive Forums

[Wtr-general] Div Access

2006-09-07 Thread Michael Ehrich
Hi my name is Michael, i have a problem with div access. i got a sample page with an external js file. the js file creates a dynamtic popup menu with several subfolders. all data is located in an array. at the end of the js it is written on the file by document.writeln so when i try

Re: [Wtr-general] Cannot access input element

2006-09-07 Thread Karim Noorani
Thanks, Bill. This looks like what is going on here. Is there any more details or examples of how I may use the execscript of the windows object? Also if this in fact the problem is there a show that would display if this is in fact what is my problem? Thanks, Karim -Original

Re: [Wtr-general] Hi watir problem

2006-09-07 Thread Charley Baker
It looks like you're still running some files from the 1.4.1 version from site_ruby directory if you look at the path you have below for iedialog.dll. If you've already uninstalled 1.4.1 then make sure to reme the watir.rb and watir directory from site_ruby and try it again.-CharleyOn 9/7/06,

[Wtr-general] Handling (Browser Security Driven?) Modal Dialog

2006-09-07 Thread Sun
I have a popup titled simply Internet Explorer containing the text: When you send information to the Internet, it might be possible for others to see that information. Do you want to continue? There are two buttons, labeled Yes and No. I am unable to attach to this like so: ie2 =

[Wtr-general] Inputing text into a textarea that is contained within a div

2006-09-07 Thread Ryan Howard \(Intern\)
Hi, Im having a lot of trouble trying to get Watir to input text into a textarea that is within a div, I have tried a lot of things, such as ie.divs(:class, CommonFormField ).set('watir') and a ton of variations to that. I am totally out of ideas. From what I know, the box

Re: [Wtr-general] Navigating in IE frames

2006-09-07 Thread haggard
Yes, the frame itself must be dereferenced. Example: Multiple nested frames and a hyper link to be clicked. ie.frame(:name, frame3).frame(:name, frame3).link(:index, 1).click - Posted via Jive Forums

Re: [Wtr-general] Inputing text into a textarea that is containedwithin a div

2006-09-07 Thread Alan Ark
Hey there. Your editor looks similar to FreeTextBox which I was looking to test against. I had no luck in my investigations, but I have also been pretty busy with other things lately. One thing that I was going to try is ask around to see if one of the developers could interact

[Wtr-general] Calling JavaScript code in the browser

2006-09-07 Thread Egil Sorensen
Thanks to Bill Attebery for pointing to a blog with a good solution to this problem. I have experimented with making it easier to get any return value back to Watir. This is what I came up with: === require 'watir' module Watir class IE def