[wtr-general] Re: problem in jssh

2009-07-14 Thread Angrez Singh
which XPI you are using and i think you want to say 3.10? On Mon, Jul 13, 2009 at 6:39 PM, venkatesh kumar venkatesh...@gmail.comwrote: firefox 3.01 Thanks Venkat www.prog2impress.com On Mon, Jul 13, 2009 at 12:15 PM, Angrez Singh ang...@gmail.com wrote: Which Firefox version are you

[wtr-general] Re: How to get firefox window handle

2009-07-14 Thread kiran yajamanyam
Hi Angrez, Where can i get documentation for the same. I don't know how to get title of the window using Win32API. Regards, Kiran Y On Fri, Jul 10, 2009 at 2:44 PM, Angrez Singh ang...@gmail.com wrote: Right now there is no support for hwnd in Firewatir. Can you use Win32API to get the handle

[wtr-general] Re: How to get firefox window handle

2009-07-14 Thread Angrez Singh
You can look into winhelper.rb file in watir framework. It uses win32api for lot of things. I haven't used win32api so will not be able to help you much with the code. Thanks, Angrez On Tue, Jul 14, 2009 at 1:16 PM, kiran yajamanyam kiranyajaman...@gmail.com wrote: Hi Angrez, Where can i get

[wtr-general] Re: problem in jssh

2009-07-14 Thread venkatesh kumar
firefox version: 3.0.1 jssh: 0.9 thanks for your kind assistence Regards, Venkat www.prog2impress.com On Tue, Jul 14, 2009 at 12:14 PM, Angrez Singh ang...@gmail.com wrote: which XPI you are using and i think you want to say 3.10? On Mon, Jul 13, 2009 at 6:39 PM, venkatesh

[wtr-general] Re: problem in jssh

2009-07-14 Thread Angrez Singh
Did you installed the XPI from here: http://wiki.openqa.org/display/WTR/FireWatir+Installation Also can you see if you have done all the steps correct, mostly people forget to install the Redistributed package for VS 2005 SP1. Can you just check that? Thanks, Angrez On Tue, Jul 14, 2009 at

[wtr-general] Re: Do you know how to make text box writable on the go.

2009-07-14 Thread Ray
I had to do this to input a date that is normally selected by a javascript calendar pop up. frame.text_field(:name, fieldName).document.readonly = frame.text_field(:name, fieldName).set(date) frame.text_field(:name, fieldName).document.readonly = read only this seems to work for me for now,