{"id":15144577,"url":"https://github.com/testautomation/robotframework","last_synced_at":"2025-09-29T13:31:17.493Z","repository":{"id":40416494,"uuid":"325309767","full_name":"testautomation/robotframework","owner":"testautomation","description":"RobotFramework - Generic automation framework for acceptance testing and RPA","archived":false,"fork":true,"pushed_at":"2024-08-20T23:11:40.000Z","size":107508,"stargazers_count":1,"open_issues_count":1,"forks_count":1,"subscribers_count":1,"default_branch":"master","last_synced_at":"2024-09-27T10:42:21.112Z","etag":null,"topics":["atdd","automation","bdd","ci-cd","devops","robot","robot-framework","robotframework","robotic-process-automation","rpa","testautomation","testautomationframework"],"latest_commit_sha":null,"homepage":"http://robotframework.org","language":"Python","has_issues":false,"has_wiki":null,"has_pages":null,"mirror_url":null,"source_name":"robotframework/robotframework","license":"apache-2.0","status":null,"scm":"git","pull_requests_enabled":true,"icon_url":"https://github.com/testautomation.png","metadata":{"files":{"readme":"README.rst","changelog":null,"contributing":"CONTRIBUTING.rst","funding":null,"license":"LICENSE.txt","code_of_conduct":null,"threat_model":null,"audit":null,"citation":null,"codeowners":null,"security":null,"support":null}},"created_at":"2020-12-29T14:37:14.000Z","updated_at":"2022-08-31T12:32:25.000Z","dependencies_parsed_at":"2023-02-10T16:30:55.576Z","dependency_job_id":null,"html_url":"https://github.com/testautomation/robotframework","commit_stats":null,"previous_names":[],"tags_count":96,"template":false,"template_full_name":null,"repository_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/testautomation%2Frobotframework","tags_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/testautomation%2Frobotframework/tags","releases_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/testautomation%2Frobotframework/releases","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/testautomation%2Frobotframework/manifests","owner_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners/testautomation","download_url":"https://codeload.github.com/testautomation/robotframework/tar.gz/refs/heads/master","host":{"name":"GitHub","url":"https://github.com","kind":"github","repositories_count":234624037,"owners_count":18862271,"icon_url":"https://github.com/github.png","version":null,"created_at":"2022-05-30T11:31:42.601Z","updated_at":"2022-07-04T15:15:14.044Z","host_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub","repositories_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories","repository_names_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repository_names","owners_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners"}},"keywords":["atdd","automation","bdd","ci-cd","devops","robot","robot-framework","robotframework","robotic-process-automation","rpa","testautomation","testautomationframework"],"created_at":"2024-09-26T10:42:15.143Z","updated_at":"2025-09-29T13:31:15.019Z","avatar_url":"https://github.com/testautomation.png","language":"Python","readme":"Robot Framework\n===============\n\n.. contents::\n   :local:\n\nIntroduction\n------------\n\n`Robot Framework \u003chttp://robotframework.org\u003e`_ |r| is a generic open source\nautomation framework for acceptance testing, acceptance test driven\ndevelopment (ATDD), and robotic process automation (RPA). It has simple plain\ntext syntax and it can be extended easily with generic and custom libraries.\n\nRobot Framework is operating system and application independent. It is\nimplemented using `Python \u003chttp://python.org\u003e`_ which is also the primary\nlanguage to extend it. The framework has a rich ecosystem around it consisting\nof various generic libraries and tools that are developed as separate projects.\nFor more information about Robot Framework and the ecosystem, see\nhttp://robotframework.org.\n\nRobot Framework project is hosted on GitHub_ where you can find source code,\nan issue tracker, and some further documentation. Downloads are hosted on PyPI_.\n\nRobot Framework development is sponsored by `Robot Framework Foundation\n\u003chttp://robotframework.org/foundation\u003e`_. If you are using the framework\nand benefiting from it, consider joining the foundation to help maintaining\nthe framework and developing it further.\n\n.. _GitHub: https://github.com/robotframework/robotframework\n.. _PyPI: https://pypi.python.org/pypi/robotframework\n\n.. image:: https://img.shields.io/pypi/v/robotframework.svg?label=version\n   :target: https://pypi.python.org/pypi/robotframework\n   :alt: Latest version\n\n.. image:: https://img.shields.io/pypi/l/robotframework.svg\n   :target: http://www.apache.org/licenses/LICENSE-2.0.html\n   :alt: License\n\nInstallation\n------------\n\nIf you already have Python_ with `pip \u003chttps://pip.pypa.io\u003e`_ installed,\nyou can simply run::\n\n    pip install robotframework\n\nFor more detailed installation instructions, including installing Python, see\n`\u003cINSTALL.rst\u003e`__.\n\nRobot Framework requires Python 3.6 or newer and runs also on `PyPy \u003chttp://pypy.org\u003e`_.\nIf you need to use Python 2, `Jython \u003chttp://jython.org\u003e`_ or\n`IronPython \u003chttp://ironpython.net\u003e`_, you can use `Robot Framework 4.1.3`__.\n\n__ https://github.com/robotframework/robotframework/tree/v4.1.3#readme\n\nExample\n-------\n\nBelow is a simple example test case for testing login to some system.\nYou can find more examples with links to related demo projects from\nhttp://robotframework.org.\n\n.. code:: robotframework\n\n    *** Settings ***\n    Documentation     A test suite with a single test for valid login.\n    ...\n    ...               This test has a workflow that is created using keywords in\n    ...               the imported resource file.\n    Resource          login.resource\n\n    *** Test Cases ***\n    Valid Login\n        Open Browser To Login Page\n        Input Username    demo\n        Input Password    mode\n        Submit Credentials\n        Welcome Page Should Be Open\n        [Teardown]    Close Browser\n\nUsage\n-----\n\nTests (or tasks) are executed from the command line using the ``robot``\ncommand or by executing the ``robot`` module directly like ``python -m robot`` .\n\nThe basic usage is giving a path to a test (or task) file or directory as an\nargument with possible command line options before the path::\n\n    robot tests.robot\n    robot --variable BROWSER:Firefox --outputdir results path/to/tests/\n\nAdditionally, there is the ``rebot`` tool for combining results and otherwise\npost-processing outputs::\n\n    rebot --name Example output1.xml output2.xml\n\nRun ``robot --help`` and ``rebot --help`` for more information about the command\nline usage. For a complete reference manual see `Robot Framework User Guide`_.\n\nDocumentation\n-------------\n\n- `Robot Framework User Guide\n  \u003chttp://robotframework.org/robotframework/#user-guide\u003e`_\n- `Standard libraries\n  \u003chttp://robotframework.org/robotframework/#standard-libraries\u003e`_\n- `API documentation \u003chttp://robot-framework.readthedocs.org\u003e`_\n- `General documentation \u003chttp://robotframework.org/\u003e`_\n\nSupport and Contact\n-------------------\n\n- `Slack \u003chttps://robotframework.slack.com/\u003e`_\n  (`click for invite \u003chttps://robotframework-slack-invite.herokuapp.com\u003e`__)\n- `Forum \u003chttps://forum.robotframework.org/\u003e`_\n- `robotframework-users\n  \u003chttps://groups.google.com/group/robotframework-users/\u003e`_ mailing list\n- `@robotframework \u003chttps://twitter.com/robotframework\u003e`_ on Twitter\n\nContributing\n------------\n\nInterested to contribute to Robot Framework? Great! In that case it is a good\nstart by looking at the `\u003cCONTRIBUTING.rst\u003e`__. If you\ndo not already have an issue you would like to work on, you can check\nissues with `good new issue`__ and `help wanted`__ labels.\n\nRemember also that there are many other tools and libraries in the wider\n`Robot Framework ecosystem \u003chttp://robotframework.org\u003e`_ that you can\ncontribute to!\n\n__ https://github.com/robotframework/robotframework/issues?q=is%3Aissue+is%3Aopen+label%3A%22good+first+issue%22\n__ https://github.com/robotframework/robotframework/issues?q=is%3Aissue+is%3Aopen+label%3A%22help+wanted%22\n\nLicense and Trademark\n---------------------\n\nRobot Framework is open source software provided under the `Apache License 2.0`__.\nRobot Framework documentation and other similar content use the\n`Creative Commons Attribution 3.0 Unported`__ license. Most libraries and tools\nin the ecosystem are also open source, but they may use different licenses.\n\nRobot Framework trademark is owned by `Robot Framework Foundation`_.\n\n__ http://apache.org/licenses/LICENSE-2.0\n__ http://creativecommons.org/licenses/by/3.0\n\n.. |r| unicode:: U+00AE\n","funding_links":[],"categories":[],"sub_categories":[],"project_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Ftestautomation%2Frobotframework","html_url":"https://awesome.ecosyste.ms/projects/github.com%2Ftestautomation%2Frobotframework","lists_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Ftestautomation%2Frobotframework/lists"}