https://github.com/jefferson10147/cureskin-test-scenarios
Test cases for the Cafedaria page
https://github.com/jefferson10147/cureskin-test-scenarios
behave python selenium test-automation
Last synced: 7 months ago
JSON representation
Test cases for the Cafedaria page
- Host: GitHub
- URL: https://github.com/jefferson10147/cureskin-test-scenarios
- Owner: jefferson10147
- Created: 2023-09-04T23:30:12.000Z (about 2 years ago)
- Default Branch: main
- Last Pushed: 2023-09-06T01:16:33.000Z (about 2 years ago)
- Last Synced: 2025-02-15T08:30:54.245Z (8 months ago)
- Topics: behave, python, selenium, test-automation
- Language: Python
- Homepage:
- Size: 20.5 KB
- Stars: 0
- Watchers: 1
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
Awesome Lists containing this project
README
# Test cases: CureSkin page
In this project, you may find the test cases for the CureSkin main page and the shop page.
With the following stack of technologies like Python 3, Selenium, and Behave.
## How to execute this project (UNIX Systems)
1- Clone this project, on your local machine:
```bash
$ git clone https://github.com/jefferson10147/cureskin-test-scenarios.git
```
2- Create a Python virtual environment:
```bash
$ python3 -m venv ./venv
```
3- Activate env:
```bash
$ source your_venv/bin/activate
```
4- Install dependencies:
```bash
$ pip install -r requirements.txt
```
## Examples of execution:
- To run all the test cases from a specific feature file:
```bash
$ behave features/tests/shop_page_test.feature
```
- To run a specific test case from a specific feature file:
```bash
$ behave features/tests/shop_page_test.feature -n 'User can click through the product collections'
```