[wtr-general] Re: Help needed documenting Watir 1.6 roll out

2008-11-07 Thread Gavin Jefferies
Hi Bret, If you are still looking for helpers let me know. Gavin On Fri, Nov 7, 2008 at 12:17 PM, Bret Pettichord <[EMAIL PROTECTED]> wrote: > > I need help documenting and supporting the Watir 1.6 release. > > So far we have run into two small problems that some people will have > with upgrad

[wtr-general] Re: Help needed documenting Watir 1.6 roll out

2008-11-11 Thread Gavin Jefferies
be updated by reading the release notes, unit tests, and > perhaps by inspecting Watir code. > > Thanks for your help. > > Bret > > Gavin Jefferies wrote: >> Hi Bret, >> >> If you are still looking for helpers let me know. >> >> Gavin >> >&

[wtr-general] Re: WatirLogger can't work in watir1.6.2

2008-11-11 Thread Gavin Jefferies
Hi Drew, require 'logger' require 'watir/logger' will get it working for you but I think the first requirement is a bug. Gavin On Tue, Nov 11, 2008 at 10:54 PM, drew <[EMAIL PROTECTED]> wrote: > > when debug lib/watir/logger.rb file > > prompt "Uninitialized constant Watir::Logger " > > On Nov

[wtr-general] Re: Can't log in/edit Confluence wiki?

2008-11-18 Thread Gavin Jefferies
It is back now. On Tue, Nov 18, 2008 at 1:19 PM, Alister Scott <[EMAIL PROTECTED]> wrote: > > Patrick is aware and is working on it. > > On Nov 19, 1:44 am, Bret Pettichord <[EMAIL PROTECTED]> wrote: >> I have the same problem. >> >> Alister Scott wrote: >> > The openqa.org site has been renamed

[wtr-general] Re: 1.6.2 - browser.attach question

2008-11-28 Thread Gavin Jefferies
Hi Lisa, If you want to have one browser shared among all your tests in the suite then a global variable set up in a mixin class may be what you are looking for: module MySetup def setup if $br == nil $br = Watir::Browser.new end @br = $br end end Then use this module in y