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
- Host: GitHub
- URL: https://github.com/rbento/robotframework-starter
- Owner: rbento
- Created: 2025-04-25T07:54:53.000Z (about 1 year ago)
- Default Branch: main
- Last Pushed: 2025-04-25T08:01:08.000Z (about 1 year ago)
- Last Synced: 2025-06-17T08:42:52.738Z (12 months ago)
- Language: RobotFramework
- Size: 1000 Bytes
- Stars: 0
- Watchers: 0
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
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
```