[site](https://robotframework.org/)
[repo](https://github.com/robotframework/robotframework)
Robot Framework is not a [[Browser-based testing|browser-based tool]] per se. Rather, it is an [[Open source]] framework that goes on top of almost any automation tool and gives it a keyword-driven API.
It seems similar to [[Serenity JS]] in that it's a wrapper for other tools.
It was originally developed by Nokia and open sourced in 2008.
## Example
(from main site)
```
*** 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 resource.txt
*** 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
```