[wtr-general] installing firewatir, chromewatir, safariwatir

2010-01-29 Thread gary
Please forgive me but I'm still having trouble installing any of the following; firewatir, chromewatir, safariwatir. I've been using watir for a while in IE and now would like to install firwewatir, safariwaitr, etc but I can't even fathom out how to install them, even after trawling through

Re: [wtr-general] Is there a version of jssh.xpi for FF3.6 for snow leopard

2010-01-29 Thread Željko Filipin
On Thu, Jan 28, 2010 at 10:28 PM, QAguy qablogm...@gmail.com wrote: Can't seem to find it. All we have is here: http://wiki.openqa.org/display/WTR/FireWatir+Installation We do not have jssh for FF 3.6 and snow leopard yet. Željko -- watir.com - community manager watirpodcast.com - host --

Re: [wtr-general] Re: Is there a version of jssh.xpi for FF3.6 for snow leopard

2010-01-29 Thread Željko Filipin
On Thu, Jan 28, 2010 at 10:48 PM, QAguy qablogm...@gmail.com wrote: Anyone seen this before on install? watir-webdriver installed just fine on my Mac (10.6): http://zeljkofilipin.com/2010/01/12/watir-on-webdriver/ Željko -- You received this message because you are subscribed to the Google

Re: [wtr-general] Re: Is there a version of jssh.xpi for FF3.6 for snow leopard

2010-01-29 Thread Željko Filipin
On Fri, Jan 29, 2010 at 12:10 AM, QAguy qablogm...@gmail.com wrote: gem install watir-webdriver --pre /opt/local/lib/ruby/gems/1.8/gems/safariwatir-0.3.7/lib/watir/ If you provide your script I could help more, but looks like you are using safariwatir and not watir-webdriver. More info:

Re: [wtr-general] installing firewatir, chromewatir, safariwatir

2010-01-29 Thread Željko Filipin
On Fri, Jan 29, 2010 at 10:36 AM, gary mrgaryengl...@googlemail.com wrote: Please forgive me but I'm still having trouble installing any of the following; firewatir, chromewatir, safariwatir. Firewatir (windows, mac, linux): gem install firewatir More info:

Re: [wtr-general] Issue with clicking submit in a site modal window

2010-01-29 Thread Yuping Zhong
I think it is a bug for SafariWatir. On Wed, Jan 27, 2010 at 1:01 AM, QAguy qablogm...@gmail.com wrote: The site I am testing has a page where I if I click on a specific element I can modify its properties by opening a modal window. In the modal window I enter in the needed data then click

[wtr-general] Re: installing firewatir, chromewatir, safariwatir

2010-01-29 Thread gary
Thanks for your reply, but you know I've been here as you told me to change my post. Anyway, I've found that my problem was because I was downloading the gems from rubyforge using Chrome which appears to add file extension of .tar onto the filename. Thanks to Google Chrome for sending me on a wild

Re: [wtr-general] Re: installing firewatir, chromewatir, safariwatir

2010-01-29 Thread Željko Filipin
On Fri, Jan 29, 2010 at 12:37 PM, gary mrgaryengl...@googlemail.com wrote: Thanks for your reply, but you know I've been here as you told me to change my post. Now I remember. :) I have completely forgot that I have told you to post the question here. Bad memory. Very bad memory. Željko --

Re: [wtr-general] Re: browser.url doesn't work in FF3.6

2010-01-29 Thread Željko Filipin
On Fri, Jan 29, 2010 at 2:19 PM, al3kc aleks.kiev...@gmail.com wrote: I changed #{document_var}.location to #{document_var}.URL in FireWatir::Firefox.url and now it returns all urls as expected. Please clone watir repository on github, fix it and submit a pull request. Željko -- watir.com -

[wtr-general] Re: Another Variable Scope Question

2010-01-29 Thread chandu.tennety
Hi Edith, Try putting the myFrame under the describe in a before :each or before :all block. Chandu On Jan 28, 4:34 pm, Edith ebr...@serena.com wrote: Hi Everyone, I'm trying to understand the scoping of the browser variable that is created in itest2 generated code. When I copy this code

[wtr-general] Re: FireWatir: fire_event(onkeypress) returning error message

2010-01-29 Thread tester86
Can you make it when you click twice? ***.click ***.click I tried .click .click twice on the label, but it did not click on the label. -- You received this message because you are subscribed to the Google Groups Watir General group. To post to this group, send email to

[wtr-general] Re: browser.url doesn't work in FF3.6

2010-01-29 Thread al3kc
I've never used git before, but seems like I did it. Please clone watir repository on github, fix it and submit a pull request. Željko -- -- You received this message because you are subscribed to the Google Groups Watir General group. To post to this group, send email to

[wtr-general] Re: Is there a version of jssh.xpi for FF3.6 for snow leopard

2010-01-29 Thread QAguy
I have made my scripts generic so that they can be used either with watir or safariwatir. I have the following requires for my tests: require 'rubygems' require 'watir-webdriver' require 'safariwatir' require 'watir' require 'spec' require 'firewatir' require 'curb' require 'hpricot' require

Re: [wtr-general] Re: Is there a version of jssh.xpi for FF3.6 for snow leopard

2010-01-29 Thread Željko Filipin
On Fri, Jan 29, 2010 at 4:49 PM, QAguy qablogm...@gmail.com wrote: def start_browser if WHICH_BROWSER == 'safari' then Watir::Browser.default = WHICH_BROWSER @browser = Watir::Browser.new else @browser = Watir::Browser.new(:WHICH_BROWSER) end end To avoid problems, require

[wtr-general] Re: Is there a version of jssh.xpi for FF3.6 for snow leopard

2010-01-29 Thread QAguy
So I changed this to: def start_browser if WHICH_BROWSER == 'safari' then require 'safariwatir' requite 'watir' @browser = Watir::Safari.new else require 'web-webdriver' require 'firewatir' require 'watir' @browser = Watir::Browser.new(:WHICH_BROWSER) end end It

[wtr-general] Re: Issue with clicking submit in a site modal window

2010-01-29 Thread orde
Check out http://jira.openqa.org/browse/WTR. Click Components SafariWatir. On Jan 29, 9:14 am, QAguy qablogm...@gmail.com wrote: Where can one find the list of open safariwatir bugs to see if this is listed? On Jan 29, 6:01 am, Yuping Zhong littlezhong...@gmail.com wrote: I think it is

[wtr-general] Re: Issue with clicking submit in a site modal window

2010-01-29 Thread QAguy
Thanks. :) On Jan 29, 1:07 pm, orde ohil...@gmail.com wrote: Check outhttp://jira.openqa.org/browse/WTR.  Click Components SafariWatir. On Jan 29, 9:14 am, QAguy qablogm...@gmail.com wrote: Where can one find the list of open safariwatir bugs to see if this is listed? On Jan 29, 6:01 

[wtr-general] Re: FireWatir: fire_event(onkeypress) returning error message

2010-01-29 Thread tester86
Can you make it when you click twice? ***.click ***.click I tried .click .click twice on the label, but it did not click on the label. -- After debugging I noticed that when I do $b.element_by_xpath('// label[text()=Research]').click, in fire bug it does click on the label but the

[wtr-general] Re: Another Variable Scope Question

2010-01-29 Thread Edith
Thanks Chandu, The problem is that while it doesn't complain about browser the before cause the assignment to take place before I'm logged into the web app. As a result, the frame method can't find the frame it's looking for. Edith On Jan 29, 5:50 am, chandu.tennety chandu.tenn...@gmail.com

Re: [wtr-general] Re: FireWatir: fire_event(onkeypress) returning error message

2010-01-29 Thread Wesley Chen
You may try fire_event(onmouseover) first, then fire_event(ondblclick). Wesley. For life, the easier, the better. On Sat, Jan 30, 2010 at 4:01 AM, tester86 sagar.am...@gmail.com wrote: Can you make it when you click twice? ***.click ***.click I tried .click .click twice on the