https://github.com/yuryalencar/hands-on-tests
Tests maked in Hands on.
https://github.com/yuryalencar/hands-on-tests
covid19 hands-on predict-covid python quality-assurance robot robotframework selenium seleniumwebdriver tests
Last synced: about 1 month ago
JSON representation
Tests maked in Hands on.
- Host: GitHub
- URL: https://github.com/yuryalencar/hands-on-tests
- Owner: yuryalencar
- License: mit
- Created: 2020-07-04T15:30:02.000Z (almost 6 years ago)
- Default Branch: master
- Last Pushed: 2020-08-12T20:35:32.000Z (almost 6 years ago)
- Last Synced: 2025-01-04T20:52:00.148Z (over 1 year ago)
- Topics: covid19, hands-on, predict-covid, python, quality-assurance, robot, robotframework, selenium, seleniumwebdriver, tests
- Language: RobotFramework
- Homepage:
- Size: 1.19 MB
- Stars: 2
- Watchers: 2
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
- License: LICENSE
Awesome Lists containing this project
README
# Como Rodar Meus Testes ?
> Rodando seus testes salvando os logs em uma pasta
```
robot -d ./[LOGS_PATH] [TESTS_PATH]/[FEATURE].feature.robot
```
> Exemplo de como rodar os testes salvando os logs em uma pasta
```
robot -d ./logs tests/radar/fornecedor.feature.robot
```
# Estrutura do projeto de testes
## 1. Como instalar
> Instale o Python no seu computador (Preferência Python 3)
```
https://www.python.org/downloads/
```
> Instale o Robot Framework
```
pip install robotframework
```
> Instale o Selenium WebDriver para o Robot (Testes Web)
```
pip install --upgrade robotframework-seleniumlibrary
```
> Instale o HTTP Requests (Chamadas de API)
```
pip install -U requests
pip install -U robotframework-requests
```
> Insira o ChromeDriver em suas variáveis de ambiente (Testes Web)
```
Mac OS: brew cask install chromedriver
Verificar como fazer de acordo com seu S.O.