You can find original assignment here
Sources | UI under test | API under test | Load test target |
This test framework is writen using PyTest used Selenium Webdriver for UI test and Locust for load testing. Makefile is used to create virtual environment and dependencies can be found in toml file.
This test framework contains three different types of test: UI, API and Load tests. You can find description and test cases below for each one of them.
Positive and negative test cases for weather API service weatherstack were added. Test are using requests library to verify current weather information. You can find test scenarios here and test themselves here
Set of test created for popular e-commerce website for buying archery equipment Europe archery Test are build with Page Object patter and verify basic functionality of login, search, and checkout process. You can find test scenarios here and test themselves here
Load test for Google home page are built with Locust, load can be configured via parameters in config file. Please find test description here here
Test can be run locally by executing
make run-test
Test will be also executed automatically on each commit in Github Actions
After test execution you can find two HTML report located in reports folder. One report is for UI and API test and another one is for load test. Here is example for Pytest report
Here you can see example of Locust report
Framework is using Github Actions to build and run test on each commit on any brunch. Main file contains configuration, workflow and other related information.
To successfully run test please make sure that following is installed
- Python (version 3.9 or higher)
- PIP
Below you can find locations of the most important bids of the project:
tests
contains API, UI and Load testsreports
HTML reports appear in this folder after test are completeconfig/config.yaml
contains all the parameters for the testspages
contains Page Objects describing Website under testlocators
contains locators for samelocustfiles/locustfile.py
contains load test script