robotframework
Generic automation framework for acceptance testing and robotic process automation (RPA)
Description
Robot Framework =============== .. contents:: :local: Introduction ------------ `Robot Framework <http://robotframework.org>`_ |r| is a generic open source automation framework for acceptance testing, acceptance test driven development (ATDD), and robotic process automation (RPA). It has simple plain text syntax and it can be extended easily with generic and custom libraries. Robot Framework is operating system and application independent. It is implemented using `Python <http://python.org>`_ which is also the primary language to extend it. The framework has a rich ecosystem around it consisting of various generic libraries and tools that are developed as separate projects. For more information about Robot Framework and the ecosystem, see http://robotframework.org. Robot Framework project is hosted on GitHub_ where you can find source code, an issue tracker, and some further documentation. Downloads are hosted on PyPI_. Robot Framework development is sponsored by non-profit `Robot Framework Foundation <http://robotframework.org/foundation>`_. If you are using the framework and benefiting from it, consider joining the foundation to help maintaining the framework and developing it further. .. _GitHub: https://github.com/robotframework/robotframework .. _PyPI: https://pypi.python.org/pypi/robotframework .. image:: https://img.shields.io/pypi/v/robotframework.svg?label=version :target: https://pypi.python.org/pypi/robotframework :alt: Latest version .. image:: https://img.shields.io/pypi/l/robotframework.svg :target: http://www.apache.org/licenses/LICENSE-2.0.html :alt: License Installation ------------ If you already have Python_ with `pip <https://pip.pypa.io>`_ installed, you can simply run:: pip install robotframework For more detailed installation instructions, including installing Python, see `INSTALL.rst <https://github.com/robotframework/robotframework/blob/master/INSTALL.rst>`__. Robot Framework requires Python 3.8 or newer and runs also on `PyPy <http://pypy.org>`_. The latest version that supports Python 3.6 and 3.7 is `Robot Framework 6.1.1`__. If you need to use Python 2, `Jython <http://jython.org>`_ or `IronPython <http://ironpython.net>`_, you can use `Robot Framework 4.1.3`__. __ https://github.com/robotframework/robotframework/tree/v6.1.1#readme __ https://github.com/robotframework/robotframework/tree/v4.1.3#readme Example ------- Below is a simple example test case for testing login to some system. You can find more examples with links to related demo projects from http://robotframework.org. .. code:: robotframework *** Settings *** Documentation A test suite with a single test for valid login. ... ... This test has a workflow that is created using keywords in ... the imported resource file. Resource login.resource *** Test Cases *** Valid Login Open Browser To Login Page Input Username demo Input Password mode Submit Credentials Welcome Page Should Be Open [Teardown] Close Browser Usage ----- Tests (or tasks) are executed from the command line using the ``robot`` command or by executing the ``robot`` module directly like ``python -m robot`` . The basic usage is giving a path to a test (or task) file or directory as an argument with possible command line options before the path:: robot tests.robot robot --variable BROWSER:Firefox --outputdir results path/to/tests/ Additionally, there is the ``rebot`` tool for combining results and otherwise post-processing outputs:: rebot --name Example output1.xml output2.xml Run ``robot --help`` and ``rebot --help`` for more information about the command line usage. For a complete reference manual see `Robot Framework User Guide`_. Documentation ------------- - `Robot Framework User Guide <http://robotframework.org/robotframework/#user-guide>`_ - `Standard libraries <http://robotframework.org/robotframework/#standard-libraries>`_ - `API documentation <http://robot-framework.readthedocs.org>`_ - `General documentation <http://robotframework.org/>`_ Support and Contact ------------------- - `Slack <http://slack.robotframework.org/>`_ - `Forum <https://forum.robotframework.org/>`_ - `robotframework-users <https://groups.google.com/group/robotframework-users/>`_ mailing list Contributing ------------ Interested to contribute to Robot Framework? Great! In that case it is a good start by looking at the `CONTRIBUTING.rst <https://github.com/robotframework/robotframework/blob/master/CONTRIBUTING.rst>`__. If you do not already have an issue you would like to work on, you can check issues with `good new issue`__ and `help wanted`__ labels. Remember also that there are many other tools and libraries in the wider `Robot Framework ecosystem <http://robotframework.org>`_ that you can contribute to! __ https://github.com/robotframework/robotframework/issues?q=is%3Aissue+is%
Release History
| Version | Changes | Urgency | Date |
|---|---|---|---|
| 7.4.2 | Imported from PyPI (7.4.2) | Low | 4/21/2026 |
| v7.4.2 | [Robot Framework](http://robotframework.org/) 7.4.2 is the last planned bug fix release in the Robot Framework 7.4.x series. It contains some bug fixes as well as documentation enhancements. The most important change is the deprecation of the [built-in Testdoc tool](https://robotframework.org/robotframework/7.4.2/RobotFrameworkUserGuide.html#test-data-documentation-tool-testdoc) in favor of the [external Testdoc tool](https://marvkler.github.io/robotframework-testdoc). For more details, see t | Low | 3/3/2026 |
| v7.4.1 | [Robot Framework](http://robotframework.org/) 7.4.1 is the first bug fix release in the Robot Framework 7.4.x series. It fixes all reported regressions in [Robot Framework 7.4](https://github.com/robotframework/robotframework/blob/master/doc/releasenotes/rf-7.4.rst). For more details, see the [full release notes](https://github.com/robotframework/robotframework/blob/master/doc/releasenotes/rf-7.4.1.rst). | Low | 12/23/2025 |
| v7.4 | [Robot Framework](http://robotframework.org/) 7.4 is a feature release with support for [secret variables](https://github.com/robotframework/robotframework/blob/master/doc/releasenotes/rf-7.4.rst#secret-variables), [typed standard library keywords](https://github.com/robotframework/robotframework/blob/master/doc/releasenotes/rf-7.4.rst#typed-standard-library-keywords), [enhancements to working with bytes](https://github.com/robotframework/robotframework/blob/master/doc/releasenotes/rf-7.4.rst#en | Low | 12/12/2025 |
| v7.4rc2 | [Robot Framework](http://robotframework.org/) 7.4 is a feature release with support for [secret variables](https://github.com/robotframework/robotframework/blob/master/doc/releasenotes/rf-7.4rc2.rst#secret-variables), [typed standard library keywords](https://github.com/robotframework/robotframework/blob/master/doc/releasenotes/rf-7.4rc2.rst#typed-standard-library-keywords), [enhancements to working with bytes](https://github.com/robotframework/robotframework/blob/master/doc/releasenotes/rf-7.4r | Low | 12/9/2025 |
| v7.4rc1 | [Robot Framework](http://robotframework.org/) 7.4 is a feature release with support for [secret variables](https://github.com/robotframework/robotframework/blob/master/doc/releasenotes/rf-7.4rc1.rst#secret-variables), [typed standard library keywords](https://github.com/robotframework/robotframework/blob/master/doc/releasenotes/rf-7.4rc1.rst#typed-standard-library-keywords), [enhancements to working with bytes](https://github.com/robotframework/robotframework/blob/master/doc/releasenotes/rf-7.4r | Low | 12/9/2025 |
| v7.4b2 | [Robot Framework](http://robotframework.org/) 7.4 is a feature release with support for [secret variables](https://github.com/robotframework/robotframework/blob/master/doc/releasenotes/rf-7.4b2.rst#secret-variables) and various other enhancements and bug fixes. This beta release contains the majority of the planned features and it is especially targeted for users interested to test the aforementioned secret variables. Robot Framework 7.4 beta 2 was released on Saturday November 8, 2025. For m | Low | 11/8/2025 |
| v7.4b1 | [Robot Framework](http://robotframework.org/) 7.4 is a feature release with support for [secret variables](https://github.com/robotframework/robotframework/blob/master/doc/releasenotes/rf-7.4b1.rst#secret-variables) and various other enhancements and bug fixes. This beta release contains the majority of the planned features and it is especially targeted for users interested to test the aforementioned secret variables. Robot Framework 7.4 beta 1 was released on Tuesday October 7, 2025. For mor | Low | 10/7/2025 |
| v7.3.2 | [Robot Framework](http://robotframework.org/) 7.3.2 is the second and the last planned bug fix release in the Robot Framework 7.3.x series. It fixes few regressions in earlier RF 7.3.x releases as well as some issues affecting also earlier releases. For more details, see the [full release notes](https://github.com/robotframework/robotframework/blob/master/doc/releasenotes/rf-7.3.2.rst). | Low | 7/4/2025 |
| v7.3.1 | [Robot Framework](http://robotframework.org/) 7.3.1 is the first bug fix release in the Robot Framework 7.3.x series. It fixes all reported regressions in [Robot Framework 7.3](https://github.com/robotframework/robotframework/blob/master/doc/releasenotes/rf-7.3.rst). For more details, see the [full release notes](https://github.com/robotframework/robotframework/blob/master/doc/releasenotes/rf-7.3.1.rst). | Low | 6/16/2025 |
| v7.3 | [Robot Framework](http://robotframework.org/) 7.3 is a feature release with variable type conversion, enhancements and fixes related to timeouts, official Python 3.14 compatibility and various other exciting new features and high priority bug fixes. Robot Framework 7.3 was released on Friday May 30, 2025. For more information see the [full release notes](https://github.com/robotframework/robotframework/blob/master/doc/releasenotes/rf-7.3.rst). | Low | 5/30/2025 |
| v7.3rc3 | [Robot Framework](http://robotframework.org/) 7.3 is a feature release with variable type conversion, enhancements and fixes related to timeouts, official Python 3.14 compatibility and various other exciting new features and high priority bug fixes. This release candidate contains all planned code changes. Robot Framework 7.3 release candidate 3 was released on Wednesday May 21, 2025, and the final release is targeted for Tuesday May 27, 2025. For more information see the [full release notes] | Low | 5/21/2025 |
| v7.3rc2 | [Robot Framework](http://robotframework.org/) 7.3 is a feature release with variable type conversion, enhancements and fixes related to timeouts, official Python 3.14 compatibility and various other exciting new features and high priority bug fixes. This release candidate contains all planned code changes. Robot Framework 7.3 release candidate 2 was released on Monday May 19, 2025, and the final release is targeted for Thursday May 22, 2025. For more information see the [full release notes](h | Low | 5/19/2025 |
| v7.3rc1 | [Robot Framework](http://robotframework.org/) 7.3 is a feature release with variable type conversion, enhancements and fixes related to timeouts, and various other exciting new features and high priority bug fixes. This release candidate contains all planned code changes. Robot Framework 7.3 release candidate 1 was released on Thursday May 8, 2025, and the final release is targeted for Thursday May 15, 2025. For more information see the [full release notes](https://github.com/robotframework/r | Low | 5/8/2025 |
| v7.2.2 | [Robot Framework](http://robotframework.org/) 7.2.2 is the second and the last planned bug fix release in the Robot Framework 7.2.x series. It fixes a mistake made when releasing [Robot Framework 7.2.1](https://github.com/robotframework/robotframework/blob/master/doc/releasenotes/rf-7.2.1.rst). See the [full release notes](https://github.com/robotframework/robotframework/blob/master/doc/releasenotes/rf-7.2.2.rst) for more information. | Low | 2/7/2025 |
| v7.2.1 | [Robot Framework](http://robotframework.org/) 7.2.1 is the first bug fix release in the Robot Framework 7.2.x series. It fixes all reported regressions in [Robot Framework 7.2](https://github.com/robotframework/robotframework/blob/master/doc/releasenotes/rf-7.2.rst) as well as some issues affecting also earlier versions. For more details about fixes in Robot Framework 7.2.1, see the [full release notes](https://github.com/robotframework/robotframework/blob/master/doc/releasenotes/rf-7.2.1.rst | Low | 2/7/2025 |
| v7.2 | [Robot Framework](http://robotframework.org/) 7.2 is a feature release with JSON output support (#3423), GROUP syntax for grouping keywords and control structures (#5257), new Libdoc technology (#4304) including translations (#3676), and various other enhancements and fixes. Robot Framework 7.2 was released on Tuesday January 14, 2025. For more information see the [full release notes](https://github.com/robotframework/robotframework/blob/master/doc/releasenotes/rf-7.2.rst). | Low | 1/14/2025 |
| v7.2rc1 | [Robot Framework](http://robotframework.org/) 7.2 is a feature release with JSON output support (#3423), GROUP syntax for grouping keywords and control structures (#5257), new Libdoc technology (#4304) including translations (#3676), and various other enhancements and fixes. This release candidate contains all planned changes, but new Libdoc translations can still be added before the final release and possible bugs will be fixed. Robot Framework 7.2 release candidate 1 was released on Tuesday | Low | 12/31/2024 |
| v7.2b1 | [Robot Framework](http://robotframework.org/) 7.2 is a feature release with JSON output support (#3423), GROUP syntax for grouping keywords and control structures (#5257), new Libdoc technology (#4304) including translations (#3676), and various other enhancements and fixes. This beta release contains most of the planned features, but some changes are still possible before the release candidate. Robot Framework 7.2 was released on Wednesday December 18, 2024. For more information see the [ful | Low | 12/18/2024 |
| v7.1.1 | [Robot Framework](http://robotframework.org/) 7.1.1 is the first and also the only planned bug fix release in the Robot Framework 7.1.x series. It fixes all reported regressions as well as some issues affecting also earlier versions. Robot Framework 7.1.1 was released on Saturday October 19, 2024. For more information see the [full release notes](https://github.com/robotframework/robotframework/blob/master/doc/releasenotes/rf-7.1.1.rst). | Low | 10/19/2024 |
| v7.1 | [Robot Framework](http://robotframework.org/) 7.1 is a feature release with enhancements, for example, to listeners and to the `VAR` syntax that was introduced in Robot Framework 7.0. For more information see the [release notes](https://github.com/robotframework/robotframework/blob/master/doc/releasenotes/rf-7.1.rst). | Low | 9/10/2024 |
| v7.1rc2 | [Robot Framework](http://robotframework.org/) 7.1 is a feature release with enhancements, for example, to listeners and to the new `VAR` syntax. Robot Framework 7.1 release candidate 2 contains all planned features and other changes. For details see the [release notes](https://github.com/robotframework/robotframework/blob/master/doc/releasenotes/rf-7.1rc2.rst). | Low | 9/3/2024 |
| v7.1rc1 | [Robot Framework](http://robotframework.org/) 7.1 is a feature release with enhancements, for example, to listeners and to the new `VAR` syntax. Robot Framework 7.1 release candidate 1 contains all planned features and other changes. For details see the [release notes](https://github.com/robotframework/robotframework/blob/master/doc/releasenotes/rf-7.1rc1.rst). | Low | 8/30/2024 |
| v7.0.1 | [Robot Framework](http://robotframework.org/) 7.0.1 is the first and the only planned bug fix release in the Robot Framework 7.0.x series. It fixes all reported regressions as well as some issues affecting also earlier versions. The only bigger enhancement it contains is the new Japanese [localization](https://robotframework.org/robotframework/latest/RobotFrameworkUserGuide.html#localization) (#5069). Robot Framework 7.0.1 was released on Monday June 10, 2024. For more information see the [fu | Low | 6/10/2024 |
| v7.0.1rc2 | [Robot Framework](http://robotframework.org/) 7.0.1 is the first and the only planned bug fix release in the Robot Framework 7.0.x series. It fixes all reported regressions as well as some issues affecting also earlier versions. The only bigger enhancement it contains is the new Japanese [localization](https://robotframework.org/robotframework/latest/RobotFrameworkUserGuide.html#localization) (#5069). Robot Framework 7.0.1 release candidate 2 was released on Friday June 7, 2024. It is especia | Low | 6/7/2024 |
| v7.0 | [Robot Framework](https://robotframework.org) 7.0 is a new major release with enhanced listener interface (#3296), native `VAR` syntax for creating variables (#3761), support for mixing embedded and normal arguments with library keywords (#4710), JSON result format (#4847) and various other enhancements and bug fixes. Robot Framework 7.0 was released on Thursday January 11, 2024. For more details about everything that's new and enhanced, see the [full release notes](https://github.com/robotfr | Low | 1/11/2024 |
| v7.0rc3 | [Robot Framework](https://robotframework.org) 7.0 is a new major release with enhanced listener interface (#3296), native `VAR` syntax for creating variables (#3761), support for mixing embedded and normal arguments with library keywords (#4710), JSON result format (#4847) and various other enhancements and bug fixes. Robot Framework 7.0 requires Python 3.8 or newer (#4294). Robot Framework 7.0 rc 3 was released on Monday January 8, 2024, with all features and fixes planned to be included in | Low | 1/8/2024 |
| v7.0rc2 | [Robot Framework](https://robotframework.org) 7.0 is a new major release with enhanced listener interface (#3296), native `VAR` syntax for creating variables (#3761), support for mixing embedded and normal arguments with library keywords (#4710), JSON result format (#4847) and various other enhancements and bug fixes. Robot Framework 7.0 requires Python 3.8 or newer (#4294). Robot Framework 7.0 rc 2 was released on Thursday January 4, 2024, with all features and fixes planned to be included i | Low | 1/4/2024 |
| v7.0rc1 | [Robot Framework](https://robotframework.org) 7.0 is a new major release with enhanced listener interface (#3296), native `VAR` syntax for creating variables (#3761), support for mixing embedded and normal arguments with library keywords (#4710), JSON result format (#4847) and various other enhancements and bug fixes. Robot Framework 7.0 requires Python 3.8 or newer (#4294). Robot Framework 7.0 rc 1 was released on Thursday December 21, 2023, with all features and fixes planned to be included | Low | 12/21/2023 |
| v7.0b1 | [Robot Framework](https://robotframework.org) 7.0 is a new major release with enhanced listener interface (#3296), native `VAR` syntax for creating variables (#3761), support for mixing embedded and normal arguments with library keywords (#4710) and various other enhancements and bug fixes. Robot Framework 7.0 requires Python 3.8 or newer (#4294). Robot Framework 7.0 beta 1 was released on Friday December 15, 2023. It is targeted for anyone interested to see how they can use the [interesting | Low | 12/15/2023 |
| v7.0a2 | [Robot Framework](https://robotframework.org) 7.0 is a new major release with native `VAR` syntax for creating variables (#3761), support for mixing embedded and normal arguments with library keywords (#4710) and various other enhancements and bug fixes. Robot Framework 7.0 requires Python 3.8 or newer (#4294). Robot Framework 7.0 alpha 2 was released on Wednesday November 22, 2023. It is especially targeted for external tool developers for testing how [backwards incompatible changes](https:/ | Low | 11/22/2023 |
| v7.0a1 | [Robot Framework](https://robotframework.org) 7.0 is a new major release with native `VAR` syntax for creating variables (#3761), support for mixing embedded and normal arguments with library keywords (#4710) and various other enhancements and bug fixes. Robot Framework 7.0 requires Python 3.8 or newer (#4294). Robot Framework 7.0 alpha 1 was released on Thursday November 9, 2023. It is especially targeted for external tool developers for testing how [backwards incompatible changes](https://g | Low | 11/9/2023 |
| v6.1.1 | [Robot Framework](http://robotframework.org/) 6.1.1 is the first bug fix release in the [Robot Framework 6.1](https://github.com/robotframework/robotframework/blob/master/doc/releasenotes/rf-6.1.rst) series. For more information see the [full release notes](https://github.com/robotframework/robotframework/blob/master/doc/releasenotes/rf-6.1.1.rst). | Low | 7/28/2023 |
| v6.1 | Robot Framework 6.1 is a new feature release with support for converting Robot Framework data to JSON and back, a new external parser API, possibility to mix embedded and normal arguments, and various other interesting new features both for normal users and for external tool developers. For more details, see the [full release notes](https://github.com/robotframework/robotframework/blob/master/doc/releasenotes/rf-6.1.rst). Release packages can be found at [PyPI](https://pypi.org/project/robotf | Low | 6/12/2023 |
| v6.1rc1 | Robot Framework 6.1 is a new feature release with support for converting Robot Framework data to JSON and back, a new external parser API, possibility to mix embedded and normal arguments, and various other interesting new features both for normal users and for external tool developers. This release candidate contains all planned fixes and features. We hope that all Robot Framework users could test it in their environments to help us find possible regressions before the final release. For mor | Low | 6/5/2023 |
| v6.1b1 | Robot Framework 6.1 is a new feature release with support for converting Robot Framework data to JSON and back, a new external parser API, and various other interesting new features both for normal users and for external tool developers. This beta release is especially targeted for tool developers interested to test the new APIs. It also contains all planned backwards incompatible changes and deprecated features, and everyone interested to make sure their tests, tasks or tools are compatible, sh | Low | 5/5/2023 |
| v6.1a1 | Robot Framework 6.1 is a new feature release with support for converting Robot Framework data to JSON and back as well as various other interesting new features both for normal users and for external tool developers. This first alpha release is especially targeted for those interested to test JSON serialization. It also contains all planned backwards incompatible changes and deprecated features, so everyone interested to make sure their tests, tasks or tools are compatible, should test it in the | Low | 3/17/2023 |
| v6.0.2 | Robot Framework 6.0.2 is the second and also the last maintenance release in the RF 6.0 series. It does not contain any high priority fixes or enhancements and was released mainly to make it possible to fully concentrate on Robot Framework 6.1. For more details see the [full release notes](https://github.com/robotframework/robotframework/blob/master/doc/releasenotes/rf-6.0.2.rst). | Low | 1/8/2023 |
| v6.0.1 | Robot Framework 6.0.1 is the first bug fix release in the RF 6.0 series. It mainly fixes a bug in using localized BDD prefixes consisting of more than one word (#4515) as well as a regression related to the library search order (#4516). For more details see the [full release notes](https://github.com/robotframework/robotframework/blob/master/doc/releasenotes/rf-6.0.1.rst). | Low | 11/3/2022 |
| v6.0 | Robot Framework 6.0 is a new major release that starts Robot Framework's localization efforts. In addition to that, it contains several nice enhancements related to, for example, automatic argument conversion and using embedded arguments. Initially it had version 5.1 and was considered a feature release, but it grow so big that we decided to call it a major release instead. For more details see the [full release notes](https://github.com/robotframework/robotframework/blob/master/doc/releaseno | Low | 10/19/2022 |
| v6.0rc2 | Robot Framework 6.0 is a new major release that starts Robot Framework's localization efforts. In addition to that, it contains several nice enhancements related to, for example, automatic argument conversion and using embedded arguments. Robot Framework 6.0 rc 2 is the second and hopefully the last release candidate containing all features and fixes planned to be included in the final release. Robot Framework 6.0 was initially labeled Robot Framework 5.1 and considered a feature release. In | Low | 10/11/2022 |
| v6.0rc1 | Robot Framework 6.0 is a new major release that starts Robot Framework's localization efforts. In addition to that, it contains several nice enhancements related to, for example, automatic argument conversion and using embedded arguments. Robot Framework 6.0 rc 1 is the first and hopefully also the last release candidate containing all features and fixes planned to be included in the final release. Robot Framework 6.0 was initially labeled Robot Framework 5.1 and considered a feature release. | Low | 9/29/2022 |
| v5.1b2 | Robot Framework 5.1 is a new feature release that starts Robot Framework's localization efforts and also brings in other nice enhancements. Robot Framework 5.1 preview releases are targeted especially for people interested in translations. For more details see the [full release notes](https://github.com/robotframework/robotframework/blob/master/doc/releasenotes/rf-5.1b2.rst). | Low | 9/21/2022 |
| v5.1b1 | Robot Framework 5.1 is a new feature release that starts Robot Framework's localization efforts and also brings in other nice enhancements. Robot Framework 5.1 preview releases are targeted especially for people interested in translations. For more details see the [full release notes](https://github.com/robotframework/robotframework/blob/master/doc/releasenotes/rf-5.1b1.rst). | Low | 9/2/2022 |
| v5.1a2 | Robot Framework 5.1 is a new feature release that starts Robot Framework's localization efforts and also brings in other nice enhancements. Robot Framework 5.1 alpha releases are targeted especially for people interested in translations. For more details see the [full release notes](https://github.com/robotframework/robotframework/blob/master/doc/releasenotes/rf-5.1a2.rst). | Low | 7/21/2022 |
| v5.1a1 | Robot Framework 5.1 is a new feature release that starts Robot Framework's localization efforts and also brings in other nice enhancements. Robot Framework 5.1 alpha 1 is the first preview release targeted especially for people interested in translations. For more details see the [full release notes](https://github.com/robotframework/robotframework/blob/master/doc/releasenotes/rf-5.1a1.rst). | Low | 7/15/2022 |
| v5.0.1 | Robot Framework 5.0.1 is the first and also the last planned bug fix release in the Robot Framework 5.0.x series. For more details see the [full release notes](https://github.com/robotframework/robotframework/blob/master/doc/releasenotes/rf-5.0.1.rst). | Low | 5/16/2022 |
| v5.0.1rc1 | Robot Framework 5.0.1 is the first and also the last planned bug fix release in the Robot Framework 5.0.x series. This release candidate contains all issues targeted to the final release. For more details see the [full release notes](https://github.com/robotframework/robotframework/blob/master/doc/releasenotes/rf-5.0.1rc1.rst). | Low | 5/9/2022 |
| v5.0 | Robot Framework 5.0 is a big new major release with lot of interesting new features such as `TRY/EXCEPT`, `WHILE`, inline `IF`, `RETURN`, `BREAK` and `CONTINUE` syntax, support for custom argument conversion in libraries and various enhancements to xUnit outputs. Robot Framework 5.0 only works with Python 3.6 or newer. For more details see the [full release notes](https://github.com/robotframework/robotframework/blob/master/doc/releasenotes/rf-5.0.rst). | Low | 3/23/2022 |
| v5.0rc2 | Robot Framework 5.0 is a big new major release with lot of interesting new features such as `TRY/EXCEPT`, `WHILE`, inline `IF`, `RETURN`, `BREAK` and `CONTINUE` syntax, support for custom argument conversion in libraries and various enhancements to xUnit outputs. Robot Framework 5.0 only works with Python 3.6 or newer. Robot Framework 5.0 release candidate 2 contains all planned features and code changes. Please test the release candidate in your environment and report possible problems! The | Low | 3/18/2022 |
| v5.0b1 | Robot Framework 5.0 is a big new major release with lot of interesting new features such as `TRY/EXCEPT`, `WHILE`, inline `IF`, `RETURN`, `BREAK` and `CONTINUE` syntax, support for custom argument conversion in libraries and various enhancements to xUnit outputs. Robot Framework 5.0 only works with Python 3.6 or newer. Robot Framework 5.0 beta 1 is the second preview release and contains majority of the planned new features. For more details see the [full release notes](https://github.com/rob | Low | 2/11/2022 |
