In addition to test automation, Robot Framework can be used for other automation purposes, including robotic process automation (RPA). It has been always been possible, bu Robot Framework 3.1 added official support for automating tasks, not only tests. For most parts creating tasks works the same way as `creating tests`_ and the only real difference is in terminology. Tasks can also be organized into suites__ exactly like test cases.
Tasks are created based on the available keywords exactly like test cases, and the task syntax is in general identical to the `test case syntax`_. The main difference is that tasks are created in task sections (or tables) instead of test case sections:
*** Tasks ***
Process invoice
Read information from PDF
Validate information
Submit information to backend system
Validate information is visible in web UIIt is an error to have both tests and tasks in same file.
Settings that can be used in the task section are exactly the same as in the `test case section`__. In the `setting section`__ it is possible to use :setting:`Task Setup`, :setting:`Task Teardown`, :setting:`Task Template` and :setting:`Task Timeout` instead of their :setting:`Test` variants.