Unit testing Web applications

Collapse
This topic is closed.
X
X
 
  • Time
  • Show
Clear All
new posts
  • Monica Leko

    Unit testing Web applications

    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?
  • Diez B. Roggisch

    #2
    Re: Unit testing Web applications

    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 selenium together with selenium-remote driven
    via python. Don't forget to check out the brilliant selenium IDE.

    Diez

    Comment

    Working...