[wtr-general] Re: forms in subframes - elements not found

2009-06-04 Thread jason
Chuck, Thanks a lot for your thoughs. Of course you are right with the work around - but this does not work for me because I have a large number of sites that often change so I don't know / cannot rely on the structure of the websites - my program has to find this out for itself and operate the

[wtr-general] Re: Towards migrating to Watir.com

2009-06-04 Thread jason
Hi Alistair, With lack of a better alternative - wordpress - or any blog - is a pain for the user searching for structured information. Do you think 37signals would sponsor project space in thier basecamp. would that meet the requirements?? jason. On 4 Jun., 06:23, Alister Scott

[wtr-general] Saving a webpage - Twitter question from Animesh1988

2009-06-04 Thread Richard Wijdenes
Hi all, Saving the contents of a webpage can be done as follows require 'watir' browser = Watir::IE.new browser.goto(http://www.google.com;) open('filename', 'w') { |f| f.puts browser.html } grtz, Richard --~--~-~--~~~---~--~~ You received this message because

[wtr-general] Re: Towards migrating to Watir.com

2009-06-04 Thread Željko Filipin
On Thu, Jun 4, 2009 at 10:20 AM, jason jason.franklin.sto...@gmail.com wrote: With lack of a better alternative - wordpress - or any blog - is a pain for the user searching for structured information. Wordpress has pages that can be structured. Željko -- http://watirpodcast.com/

[wtr-general] Re: Watir and flash audio

2009-06-04 Thread Philbo
Our build server is a VM so we left a user logged in via the VM console (rather than a remote desktop session). It seems to be working but is a bit flaky. We going to try stopping the console from locking to see if that proves more reliable. Thanks for the help On Jun 2, 6:00 am, Prajakta

[wtr-general] Re: Need help on jssh installation for firefox

2009-06-04 Thread Angrez Singh
Can you check this page make sure you followed each step: http://wiki.openqa.org/display/WTR/FireWatir+Installation - Angrez On Wed, Jun 3, 2009 at 6:32 PM, Chethan chethan2...@gmail.com wrote: Pls Help me out on this Jssh issue. Thanks, Chethan On Jun 3, 9:54 am, Chethan

[wtr-general] Re: Need help on jssh installation for firefox

2009-06-04 Thread kiran yajamanyam
Even I am facing the same issue. Please some one reply who have got solution for this Regards, Kiran Y On Tue, Jun 2, 2009 at 1:14 PM, Chethan chethan2...@gmail.com wrote: Hi, I started working on Firewatir, I have installed firewatir using new installation procedure as described in the

[wtr-general] Re: forms in subframes - elements not found

2009-06-04 Thread jason
ok - so just for documentations sake i found the bug in the firewatir locate_tagged_element code in MozillaBaseElement.rb this.. if(@container.class == FireWatir::Firefox || @container.class == Frame) needs to be changed to this. if(@container.class == FireWatir::Firefox ||

[wtr-general] Re: forms in subframes - elements not found

2009-06-04 Thread Željko Filipin
On Thu, Jun 4, 2009 at 10:05 AM, jason jason.franklin.sto...@gmail.com wrote: I cannot install watir becasue it requires a windows environment - or I am I missing somthing here too? You are right. Watir (IE) works only on Windows, because there is no IE for other platforms. Željko --

[wtr-general] Re: Need help on jssh installation for firefox

2009-06-04 Thread Angrez Singh
Just a guess did you installed Redistributed package for VS 2005 SP1. Its described in step 2 here http://wiki.openqa.org/display/WTR/FireWatir+Installation;. It is required for users who are using Firewatir with Firefox 3.0 Thanks, Angrez On Thu, Jun 4, 2009 at 4:02 PM, kiran yajamanyam

[wtr-general] Re: What is equivalent to ie.childBrowser() used in Watij?

2009-06-04 Thread Željko Filipin
On Wed, Jun 3, 2009 at 7:00 PM, yurock yuroc...@gmail.com wrote: p.s. Child browser in my application does not look like new window. And how does it look like (link to page if public, screen shot otherwise)? My guess is that it is some kind of pop up. http://wiki.openqa.org/display/WTR/Pop+Ups

[wtr-general] Re: Towards migrating to Watir.com

2009-06-04 Thread Željko Filipin
On Thu, Jun 4, 2009 at 6:23 AM, Alister Scott alister.sc...@gmail.com wrote: I have looked into many options and can't find a free/cheap option to host Confluence for watir.com. Amazon EC2 will be at least US$80 per month (~$1000 per year) A lot of money. Could we ask Atlassian to host our

[wtr-general] Re: Towards migrating to Watir.com

2009-06-04 Thread Željko Filipin
On Thu, Jun 4, 2009 at 6:23 AM, Alister Scott alister.sc...@gmail.com wrote: One solution I propose is that we use wordpress.com as a CMS to host watir.com I have some space on my hosting account so we could watir.com there. We can move watir.com to wordpress.com if the space or bandwidth

[wtr-general] Re: Towards migrating to Watir.com

2009-06-04 Thread Alister Scott
FYI: I have asked Atlassian and Contegix to sponsor and they have said no. On Jun 4, 9:47 pm, Željko Filipin zeljko.fili...@wa-research.ch wrote: On Thu, Jun 4, 2009 at 6:23 AM, Alister Scott alister.sc...@gmail.com wrote:  I have looked into many options and can't find a free/cheap  

[wtr-general] Re: WatirCraft LLC is closing

2009-06-04 Thread Željko Filipin
On Thu, Jun 4, 2009 at 5:45 AM, Bret Pettichord b...@pettichord.com wrote: Pete Dignan and I have decided to shut down WatirCraft LLC. I am really sorry to hear that. Is it polite to ask why? I will begin working full time for Convio in July. Good luck on your new job. Željko

[wtr-general] .set method is not working for firefox

2009-06-04 Thread Kinnu
Hi All, When I try to set some value to the text field (In Firefox) using .set (sample text) following error will appear C:/ruby/lib/ruby/gems/1.8/gems/firewatir-1.6.2/lib/firewatir/ container.rb:517:in `read_socket' C:/ruby/lib/ruby/gems/1.8/gems/firewatir-1.6.2/lib/firewatir/

[wtr-general] Re: .set method is not working for firefox

2009-06-04 Thread Kinnu
I am using firewatir-1.6.2 and jssh 0.9 versions. Regards, Kiran Y On Jun 4, 6:18 pm, Kinnu kiranyajaman...@gmail.com wrote: Hi All, When I try to set some value to the text field (In Firefox) using .set (sample text) following error will appear    

[wtr-general] Re: WatirCraft LLC is closing

2009-06-04 Thread Pete Dignan
Z* - sure, it's ok to ask. When Bret and I started WatirCraft, we believed there were things that needed to be done for open source Watir (like support for Firefox, and a standard framework), to make the tool more attractive to a broader group of users than the innovators and early adopters who

[wtr-general] Re: Towards migrating to Watir.com

2009-06-04 Thread Felipe Knorr Kuhn
Hello Alister, I particularly host my websites and SVN server on Dreamhost.com. They have a nice control panel to create and configure a lot of stuff, including SVN and Wordpress. Unfortunately, you guys seem to NEED Confluence and Jira, and they don't host J2EE applications on the $5.95/month

[wtr-general] Re: Towards migrating to Watir.com

2009-06-04 Thread Željko Filipin
On Thu, Jun 4, 2009 at 4:12 PM, Felipe Knorr Kuhn fkn...@gmail.com wrote: Do you guys have a community/open source project license for the Atlassian apps? Alister will know for sure, but I think we have open source licenses for Jira and Confluence. Željko

[wtr-general] Re: .set method is not working for firefox

2009-06-04 Thread jason
Hi Krian, I have just tried this out for you which works - so sorry - i cant reproduce the problem: ff.form.text_field(:index, 1).set(hello) jason On 4 Jun., 15:18, Kinnu kiranyajaman...@gmail.com wrote: Hi All, When I try to set some value to the text field (In Firefox) using .set

[wtr-general] Re: What is equivalent to ie.childBrowser() used in Watij?

2009-06-04 Thread yurock
Here are the screenshots: http://picasaweb.google.ru/yurock83/Test?feat=directlink login page and dom structure... On Jun 4, 1:34 pm, Željko Filipin zeljko.fili...@wa-research.ch wrote: On Wed, Jun 3, 2009 at 7:00 PM, yurock yuroc...@gmail.com wrote: p.s. Child browser in my application

[wtr-general] Re: What is equivalent to ie.childBrowser() used in Watij?

2009-06-04 Thread yurock
Last news! I added line ie2 = Watir::IE.attach(:title, //) (watir) as equivalent to IE new_ie = ie.childBrowser(); (watij) in my script and now it works). Thanks!) --~--~-~--~~~---~--~~ You received this message because you are subscribed to the Google Groups

[wtr-general] Re: WatirCraft LLC is closing

2009-06-04 Thread Tiffany Fodor
I'm so sorry to hear about WatirCraft. I really thought it would take off and hoped it would. I think it would have been a great help to companies interested in test automation and to the Watir community. It's a shame the the conditions weren't right. :( -Tiffany On Jun 4, 7:25 am, Pete

[wtr-general] Re: Unable to click an element in table/grid

2009-06-04 Thread George
It could be a table index issue. I test our web apps in both IE and Firefox, and strangely enough, I need to change the index number of a particular table I want to access between the two. This could be something to look into. Good luck! On Jun 3, 5:32 pm, Ray rayjh...@gmail.com wrote: I

[wtr-general] Re: WatirCraft LLC is closing

2009-06-04 Thread George
Wow, sorry to hear about all of this...I hope everything will work out for you both. -George --~--~-~--~~~---~--~~ 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: WatirCraft LLC is closing

2009-06-04 Thread aidy lewis
Ironically Watir's easy-to-use API may have been WatirCraft's downfall Aidy --~--~-~--~~~---~--~~ 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: Unable to click an element in table/grid

2009-06-04 Thread orde
Slightly OT: my understanding is that Watir is one-based and Firewater is zero-based in terms of indexes (according to some recent posts). --~--~-~--~~~---~--~~ You received this message because you are subscribed to the Google Groups Watir General group. To post

[wtr-general] currentstyle not working in firefox

2009-06-04 Thread Loft_Tester
High all, for our testing of fields properties such as textfields we are using currentstyle. For example, to find the left of the textfield id=part it would look like puts $Browser.text_field (:id,part).document.currentstyle.left. This works great in IE. When I try to run this in firefox my

[wtr-general] Re: currentstyle not working in firefox

2009-06-04 Thread Loft_Tester
sorry I got a little click happy I think it's funny that document didn't return anything does anyone know away around this? is there another way to pull style information other than currentstyle? please help --~--~-~--~~~---~--~~ You received this message

[wtr-general] Re: Towards migrating to Watir.com

2009-06-04 Thread Chuck van der Linden
Has Google Code been considered? they provide a wiki and issue tracking.. also Github? I believe they also have wiki, not sure about issue tracking.. On Jun 3, 9:23 pm, Alister Scott alister.sc...@gmail.com wrote:   Hi Everyone,   I have looked into many options and can't find a free/cheap

[wtr-general] Re: How to execute the single comment?

2009-06-04 Thread Santhosh Paul
Hi All I wanted to fetch some ruby scripts like $browser.link(:href,/ submit/).click from an excel file execute it on my browser instance and was stranded for more that 2 hrs Thanks Alex Wesley, your post was of great help. Thanks Santhosh Paul. On May 25, 6:46 pm, Wesley Chen

[wtr-general] Re: Towards migrating to Watir.com

2009-06-04 Thread Alister Scott
Hi Felipe, Yes, we have a community/open source license for all the Atlassian apps. Cheers, Alister -- Alister Scott Brisbane, Australia Blog: http://watirmelon.wordpress.com Twitter: http://twitter.com/alisterscott Google: http://www.google.com/profiles/alister.scott LinkedIn:

[wtr-general] Re: Unable to click an element in table/grid

2009-06-04 Thread Ray
Thanks, I was not able to get using it like a table to click either. Unfortunately i do not have complete access to the source code of the site so i am not able to look to determine exactly how it works. What i do know is that the html is built after the cell is clicked using java script. The odd

[wtr-general] Re: How to execute the single comment?

2009-06-04 Thread Wesley Chen
:), Nice to hear that. People in the group are always warm-hearted, so please keep in grateful in our life. Thanks. Wesley Chen. On Fri, Jun 5, 2009 at 4:35 AM, Santhosh Paul santhoshp...@gmail.comwrote: Hi All I wanted to fetch some ruby scripts like $browser.link(:href,/