Re: [Zope3-Users] Getting started with testbrowser

2006-06-28 Thread Darryl Cousins
Thanks Baiju and Tom, Yep. Thanks for that. Forest for the trees. Sincere regards, Darryl - shuttling off back to his corner. On Wed, 2006-06-28 at 09:14 +0530, Baiju M wrote: > On 6/28/06, Darryl Cousins <[EMAIL PROTECTED]> wrote: > > Hi All, > > > > I'm having trouble getting started with test

Re: [Zope3-Users] Getting started with testbrowser

2006-06-27 Thread Tom Dossis
Darryl Cousins wrote: >> >>> from zope.testbrowser import Browser >> >>> browser = Browser() >> >>> browser.addHeader('Authorization', 'Basic mgr:mgrpw') oops: >> >>> browser = Browser('http://localhost/contents.html') # should be browser.open('http://localho

Re: [Zope3-Users] Getting started with testbrowser

2006-06-27 Thread Darryl Cousins
Hi again, Sorry, I made an error in the previous post when I stated that ftesting.zcml is not being parsed. It is in fact being parsed. But I still can't figure why the authentication header is not allowing the testbrowser object to 'view' @@contents.html. Regards, Darryl Cousins On Wed, 2006-0

Re: [Zope3-Users] Getting started with testbrowser

2006-06-27 Thread Baiju M
On 6/28/06, Darryl Cousins <[EMAIL PROTECTED]> wrote: Hi All, I'm having trouble getting started with testbrowser. The problem is that zopeinstance/etc/ftesting.zcml is not being read. Could someone help me get started here please? The doc test - zopeinstance/lib/python/mypkg/browser/README.tx

[Zope3-Users] Getting started with testbrowser

2006-06-27 Thread Darryl Cousins
Hi All, I'm having trouble getting started with testbrowser. The problem is that zopeinstance/etc/ftesting.zcml is not being read. Could someone help me get started here please? The doc test - zopeinstance/lib/python/mypkg/browser/README.txt: >>> from zope.testbrowser import Browser >>