5

I've found only two:

I'd like to know you practices and experiences with these (or other) tools.

Claudio Acciaresi
  • 31,951
  • 5
  • 33
  • 43
  • This is the use-case for a community wiki, and not a "Q&A" (i.e. 'has a correct answer') Right? Paging @danielrosman or someone with appropriate moderator privileges. – Issac Kelly May 07 '11 at 18:50
  • 1
    +1 community wiki. a nice list of python web testing tools on stack might be nice, should i start with my answer? :) – ashwoods May 16 '11 at 19:00

2 Answers2

2

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/

  • The robot framework isn't an IDE, it's a framework for running tests. There is an IDE for robot (RIDE), but the framework and the IDE are two separate things. You can use robot framework without RIDE. – Bryan Oakley Jul 09 '15 at 18:30
  • True. Thanks about the correction, will update my answer – Paolo De Grazia Jul 10 '15 at 10:27
1

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

daitangio
  • 583
  • 1
  • 6
  • 18
  • that was going to be my answer :D but i would rather say webdriver/selenium: http://code.google.com/p/selenium/ – ashwoods May 17 '11 at 23:53