RE: Unit testing Web applications

2008-03-05 Thread Ryan Ginstrom
> On Behalf Of Monica Leko > Does Python has some testing frameworks for testing Web > applications (like Cactus and HttpUnit for Java), generating > requests and checking if the response is correct? I have got a lot of traction using mechanize [1] with nose [2]. Of course that stil

Re: Unit testing Web applications

2008-03-05 Thread Diez B. Roggisch
Monica Leko wrote: > Hi! > > Does Python has some testing frameworks for testing Web applications > (like Cactus and HttpUnit for Java), generating requests and checking > if the response is correct? mechanize and webunit come to my mind. Yet the most powerful will be seleniu

Unit testing Web applications

2008-03-05 Thread Monica Leko
Hi! Does Python has some testing frameworks for testing Web applications (like Cactus and HttpUnit for Java), generating requests and checking if the response is correct? -- http://mail.python.org/mailman/listinfo/python-list

Re: Testing web applications

2005-02-12 Thread richard
John J. Lee wrote: >> > I'm looking for frameworks to make testing web applications - > > Did you read the question? To answer the original question, which I did not see when first posted: http://www.mechanicalcat.net/tech/webunit/ Richard -- http://mail.python.

Re: Testing web applications

2005-02-12 Thread John J. Lee
Josef Meile <[EMAIL PROTECTED]> writes: > > I'm looking for frameworks to make testing web applications - > > i.e. parsing and filling out forms - easier. I found Puffin, which > > looks good but not very usable in the current state. I know that I > > once re

Re: Testing web applications

2005-02-11 Thread Grig Gheorghiu
The Jython / HttpUnit combination worked well for me too. There's also maxq (http://maxq.tigris.org/), which looks promising, but I haven't used it yet. Grig http://agiletesting.blogspot.com -- http://mail.python.org/mailman/listinfo/python-list

Re: Testing web applications

2005-02-11 Thread Achim Domma (Procoders)
news.sydney.pipenetworks.com wrote: I've used Jython and a java package called httpunit to great effect. It even supports javascript on your pages. Thanks, that is the option I'm currentyl testing. Works great so far! regards, Achim -- http://mail.python.org/mailman/listinfo/python-list

Re: Testing web applications

2005-02-11 Thread news.sydney.pipenetworks.com
Achim Domma (Procoders) wrote: Hi, I'm looking for frameworks to make testing web applications - i.e. parsing and filling out forms - easier. I found Puffin, which looks good but not very usable in the current state. I know that I once read about other nice frameworks, but could not fin

Re: Testing web applications

2005-02-11 Thread Josef Meile
Zope + Formulator is a nice combination to validating and designing forms and add some functionality. If you want a more complicated content management framework, then you can additionally install plain CMF or Plone, which is based on CMF. There is also something called Silva, but it doesn't have m

Re: Testing web applications

2005-02-11 Thread Josef Meile
Hi Achim, I'm looking for frameworks to make testing web applications - i.e. parsing and filling out forms - easier. I found Puffin, which looks good but not very usable in the current state. I know that I once read about other nice frameworks, but could not find one via google. Any hints?

Testing web applications

2005-02-11 Thread Achim Domma (Procoders)
Hi, I'm looking for frameworks to make testing web applications - i.e. parsing and filling out forms - easier. I found Puffin, which looks good but not very usable in the current state. I know that I once read about other nice frameworks, but could not find one via google. Any hints? re