Universal test automation framework for python

I work as a sysadmin / infrastructure engineer, and sometimes I spend my time checking if everything is working properly after changing the infrastructure. I want to write some tests, for example:

  • Download some css / js from website
  • Login to the site
  • Download the file and try downloading it.
  • Log in to the server and execute a few script
  • Etc.

Most of the structural testing modules are focused on unit testing and code coverage, but all I need is just a custom runner for my test with good reporting and can be additional modules to simplify the writing of HTTP tests. The advantage of using this tool for stress testing would be an advantage. I found many names (testoob, functest, robotframework, py.test, ...), but I don’t know what to choose.

+3
source share
2 answers

[DISCLAIMER: I am a member of the team that is developing the Robot Framework]

Robot Framework , , . , Robot Framework - Selenium (http://code.google.com/p/robotframework-seleniumlibrary/).

, , , Robot Framework - py.test .

, , , python, . , python, python.

+7

( Pycopia), . ( -), . Python, , .

+1

Source: https://habr.com/ru/post/1791730/


All Articles