Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/jardevson/web-robot
Automação Web com RobotFramework
https://github.com/jardevson/web-robot
python robot-framework selenium-library
Last synced: 14 days ago
JSON representation
Automação Web com RobotFramework
- Host: GitHub
- URL: https://github.com/jardevson/web-robot
- Owner: JarDeVSon
- Created: 2023-01-13T14:59:12.000Z (almost 2 years ago)
- Default Branch: main
- Last Pushed: 2023-10-02T17:49:14.000Z (about 1 year ago)
- Last Synced: 2024-10-10T23:41:38.975Z (about 1 month ago)
- Topics: python, robot-framework, selenium-library
- Language: RobotFramework
- Homepage:
- Size: 14.6 KB
- Stars: 0
- Watchers: 1
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
Awesome Lists containing this project
README
# Web Automation Robot Framework
Sample project to demonstrate Web Automation tests written with [Robot Framework](https://robotframework.org/#resources) with [SeleniumLibrary](https://github.com/robotframework/SeleniumLibrary/) running on GitHub Actions.
## Pre-requirements
To clone and run this project, you will need:
- [Git](https://git-scm.com/downloads)(I've used version `2.34.1` while writing this doc)
- [Python](https://www.python.org/)(I've used version `3.11.5` while writing this doc)
- [Visual Studio Code](https://code.visualstudio.com/)(I've used version `Stable Build` while writing this doc)
- [Robot Framework Language Server Extension](https://marketplace.visualstudio.com/items?itemName=robocorp.robotframework-lsp)(Install the official extension in the Visual Studio Code)## Installation
Install the Following Libraries using the command Line:
- `python -m pip install -r requirements.txt`
## Running the tests
In this project, you can run tests via CLI in both environments with the flag `-v` generate the reports with the flag `-d` and pass the path to suite tests `Tests/01__TestCaseBDD.robot`:
- to run DEV `python -m robot -d reports -v ENVIRONMENT:dev Tests/01__TestCaseBDD.robot`
- to run HOM `python -m robot -d reports -v ENVIRONMENT:hom Tests/01__TestCaseBDD.robot`
___Made with ❤️ by [Jardeson Santos ](https://github.com/JarDeVSon)[Meu Linkedin](https://www.linkedin.com/in/jardeson-santosqa).