Which tools are used to write acceptance tests for Python web applications (django)? [closed]
We don’t allow questions seeking recommendations for books, tools, software libraries, and more. You can edit the question so it can be answered with facts and citations.
Closed 7 years ago.
Improve this questionI've found only two:
- http://splinter.cobrateam.info/
- http://lettuce.it/index.html
I'd like to know you practices and experiences with these (or other) tools.
In my experience, Robot Framework (http://robotframework.org/) is an amazing framework which can be combine with RIDE to write acceptance tests in a BDD way. It supports many libraries (including selenium) and lets you extend it by creating your own, everything in a very simple way. This is where I started from a couple of years ago: http://www.wallix.org/2011/07/26/how-to-use-robotframework-with-the-selenium-library/
I would suggest you to take a look also to Selenium IDE:
http://seleniumhq.org/download/
It worked well for a small set of test I need to write years ago
精彩评论