Re: Testing Django App Running on Dev Server with Selenium

2007-03-11 Thread Paul Childs
Thanks for the suggestion Grig. I'll give it a shot on Monday. /Paul On 3/10/07, Grig <[EMAIL PROTECTED]> wrote: > > Paul -- have you tried running the Selenium RC server non- > interactively, then interacting with it via one of the languages it > supports? Python for example, since you're doing

Re: Testing Django App Running on Dev Server with Selenium

2007-03-10 Thread Grig
Paul -- have you tried running the Selenium RC server non- interactively, then interacting with it via one of the languages it supports? Python for example, since you're doing Django development. Look in the python sub-directory of the selenium-rc distribution, and modify the test_google.py script

Re: Testing Django App Running on Dev Server with Selenium

2007-03-09 Thread Paul Childs
Thanks Jeremy. > I think, since the idms pattern is not being handled by an include, > you may want this: > (r'^idms/$',"idms.general.views.idms" ), > (note the "$" at the end of the pattern). I made the change and tried again but it didn't make a difference. Cheers, /Paul --~--~-~--~

Re: Testing Django App Running on Dev Server with Selenium

2007-03-09 Thread Jeremy Dunck
On 3/9/07, Paul Childs <[EMAIL PROTECTED]> wrote: ... > (r'^ssi/', include('idms.ssi.urls')), > > (r'^idms/',"idms.general.views.idms" ), > I think, since the idms pattern is not being handled by an include, you may want this: (r'^idms/$',"idms.general.views.idms" ), (note the "$" at the

Re: Testing Django App Running on Dev Server with Selenium

2007-03-09 Thread Malcolm Tredinnick
On Fri, 2007-03-09 at 13:57 +, Paul Childs wrote: > Thanks again Malcolm. > > It looks like this is starting to get beyond my comfort level. Given > that and my time constraints, it looks like Selenium is a non-starter. > I guess I'll just have to rely on humans to do that part of the > testi

Re: Testing Django App Running on Dev Server with Selenium

2007-03-09 Thread Paul Childs
Thanks again Malcolm. It looks like this is starting to get beyond my comfort level. Given that and my time constraints, it looks like Selenium is a non-starter. I guess I'll just have to rely on humans to do that part of the testing. The Selenium IDE worked fine but unfortunately it's not possib

Re: Testing Django App Running on Dev Server with Selenium

2007-03-09 Thread Malcolm Tredinnick
On Fri, 2007-03-09 at 12:59 +, Paul Childs wrote: > Thanks for the response Malcom... > > > Does the same URL work if you aren't using Selenium? I'm trying to trim > > down the problem to something smaller. > When I type http://127.0.0.1:8000/idms/ into the address bar I do not > get a Django

Re: Testing Django App Running on Dev Server with Selenium

2007-03-09 Thread Paul Childs
Thanks for the response Malcom... > Does the same URL work if you aren't using Selenium? I'm trying to trim > down the problem to something smaller. When I type http://127.0.0.1:8000/idms/ into the address bar I do not get a Django error and the proper page is rendered. > I *suspect* there is a

Re: Testing Django App Running on Dev Server with Selenium

2007-03-08 Thread Malcolm Tredinnick
On Thu, 2007-03-08 at 19:46 +, Paul Childs wrote: [...] > Then I get this Django Error message in the browser... > > TypeError at http://127.0.0.1:8000/idms/ > unpack non-sequence > Request Method: GET > Request URL: http://127.0.0.1:8000http://127.0.0.1:8000/idms/ < > THIS IS INTERESTI

Testing Django App Running on Dev Server with Selenium

2007-03-08 Thread Paul Childs
I have Selenium RC running and I was wondering if someone might be able to nudge me in the right direction. I am trying to at least get my local web site, running on the Django dev server, to display in the browser without an error, nothing more. Any help would be appreciated. The following are t