An open API service indexing awesome lists of open source software.

https://github.com/rbento/robotframework-starter

A sample test project with robotframework
https://github.com/rbento/robotframework-starter

Last synced: 5 months ago
JSON representation

A sample test project with robotframework

Awesome Lists containing this project

README

          

# robotframework-starter

- [Robot Framework](https://robotframework.org)
- [RFCP](https://robotframework.org/robotframework-RFCP-syllabus)
- [Selenium Library](https://robotframework.org/SeleniumLibrary/SeleniumLibrary.html#library-documentation-top)

## Create Project

```
pip install --upgrade pip
pip install pipenv
pipenv --python=3.12
pipenv shell
pipenv lock
pipenv sync
robot --version
```

## Run Tests

```
robot add.robot
robot welcome.robot
robot *.robot
```