Re: [Wtr-general] Access denied when trying to access a frame

2006-03-17 Thread Chandan R
Yeah... should have searched the lists before posting it here.Anyways the problem i was facing is somewhat solved for now.I have taken some tips from this mailing list and put in an entry in the FAQ http://wiki.openqa.org/display/WTR/FAQ. Hope the description given there is clear and

Re: [Wtr-general] Regarding Hidden Select Boxes

2006-03-17 Thread Zeljko Filipin
Well, I think it is because your code is all wrong. :)Your html does not show hidden type select box (I think it even does not exits). But, you could have just typed hidden by mistake (instead of disabled). But, just in case... Your html shows a hidden input fieldinput type=hidden

Re: [Wtr-general] Bad Bug Reports

2006-03-17 Thread Zeljko Filipin
I think we should put something like this at some visited place: We would like to help you, but we are very busy. We answer e-mails inour free time, so please help us help you. We will first answere-mails that follow this simple rules. From The Basics of Bug Tracking (FogBugz Documentation):

Re: [Wtr-general] Bad Bug Reports

2006-03-17 Thread Hugh Sasse
On Fri, 17 Mar 2006, Zeljko Filipin wrote: I think we should put something like this at some visited place: People who don't bother to provide full information are probably too busy to read such a document. However: We would like to help you, but we are very busy. We answer e-mails inour

Re: [Wtr-general] Bad Bug Reports

2006-03-17 Thread Zeljko Filipin
http://www.fogcreek.com/FogBugz/docs/40/Articles/TheBasicsofBugTracking.html From The Basics of Bug Tracking (FogBugz Documentation): (presumably that isn't on line?It would be useful to know...) ___ Wtr-general mailing list Wtr-general@rubyforge.org

Re: [Wtr-general] Bad Bug Reports

2006-03-17 Thread Hugh Sasse
On Fri, 17 Mar 2006, Zeljko Filipin wrote: http://www.fogcreek.com/FogBugz/docs/40/Articles/TheBasicsofBugTracking.html Thanks. That is a good article. I've just created an account for the FAQ. Lots of the entries have {anchor:...} markup (in the edit view). How does one reference these?

Re: [Wtr-general] Bad Bug Reports

2006-03-17 Thread Hugh Sasse
On Fri, 17 Mar 2006, Zeljko Filipin wrote: the new one http://jira.openqa.org/browse/WTR the old one http://rubyforge.org/tracker/?group_id=104 I've added these to my new Watir page, in the hope that this will nudge google et al to look in the right place. Patches, corrections etc

Re: [Wtr-general] FireWatir release alpha v1.0

2006-03-17 Thread Dave Liebreich
No. The current version of jssh, when installed, is not listed in the extension manager. I suggest you try re-installing jssh, and remember to restart Firefox after the install. Has anyone else tried using this and run into problems? On 3/17/06, Zeljko Filipin [EMAIL PROTECTED] wrote: Sould

Re: [Wtr-general] FireWatir release alpha v1.0

2006-03-17 Thread Zeljko Filipin
I tried re-installing jssh (and I remembered to restart Firefox after the install) and even reinstalling Firefox. No luck. Am I the only one with this problem (or even the only one that tried to do it?)?After I perform firefox.exe –jssh, http://www.croczilla.com/jssh opens with error page The

[Wtr-general] Need Help with assert_equal

2006-03-17 Thread Paul Carvalho
Hi there, I am having difficulty with an assertion in one of my scripts. I couldn't find anything in the Watir API Reference for assert_equal and when I searched the message archives, I think I'm using it correctly. Here's the sitch:- running Watir 1.4.1, Ruby 184-16 on Win XP Pro SP2- I want to

Re: [Wtr-general] FireWatir release alpha v1.0

2006-03-17 Thread Dave Liebreich
After I perform firefox.exe –jssh, http://www.croczilla.com/jssh opens with error page That's very odd. Specifying -jssh on the command-line should not affect the start page. Perhaps you are not typing the same thing we are suggesting? What is displayed on the javascript console? -Dave

Re: [Wtr-general] Access denied when trying to access a frame

2006-03-17 Thread Bret Pettichord
Thank you so much. That's a big help.On 3/17/06, Chandan R [EMAIL PROTECTED] wrote: Yeah... should have searched the lists before posting it here.Anyways the problem i was facing is somewhat solved for now.I have taken some tips from this mailing list and put in an entry in the FAQ

Re: [Wtr-general] Need Help with assert_equal

2006-03-17 Thread Paul Carvalho
Thanks for the reply, Chris.On 17/03/06, Chris McMahon [EMAIL PROTECTED] wrote: assert_equal is telling you that your code is yielding a single periodand you told it to expect to find TEST.That's how all of the asserts work.(Except plain old assert, which always yields theOkay, that's what I

Re: [Wtr-general] FireWatir release alpha v1.0

2006-03-17 Thread Bret Pettichord
Are you putting one hyphen or two before jssh?On 3/17/06, Dave Liebreich [EMAIL PROTECTED] wrote: After I perform firefox.exe –jssh, http://www.croczilla.com/jssh opens with error pageThat's very odd.Specifying -jssh on the command-line should notaffect the start page.Perhaps you are not typing

Re: [Wtr-general] Need Help with assert_equal

2006-03-17 Thread Chris McMahon
Okay, so I need to tell my script to wait a few seconds (however long it takes actually) until the page is refreshed, so I inserted the following sleep command: --- $ie.span(:index, 108).click sleep 1 until $ie.span(:id, /NodeIdentifierLabel/).text != '.' Nice use of until.

Re: [Wtr-general] Need Help with assert_equal

2006-03-17 Thread Bret Pettichord
On 3/17/06, Chris McMahon [EMAIL PROTECTED] wrote: Okay, so I need to tell my script to wait a few seconds (however long it takes actually) until the page is refreshed, so I inserted the following sleep command: --- $ie.span(:index, 108).click sleep 1 until $ie.span(:id,