Reputation:
I have developed a application in google app engine [python] How can i test it with witting some kind of script? I have tried gaeunit . Is there is any other option ?
Suppose i have following type of Form
How can i write test script for this ?
Upvotes: 0
Views: 162
Reputation: 80340
This is not unit testing - unit testing is when you test basic units of your code for proper operation, without running it in production environment. What you are doing is functional testing.
I recommend you take a look at Selenium.
Upvotes: 2