This repository contains basic example of usage PageObject pattern with Selenium and Python (PyTest + Selenium).
Video screencast with the description ot this code: https://www.youtube.com/watch?v=BRxp1Kn1G7w
conftest.py contains all the required code to catch failed test cases and make screenshot of the page in case any test case will fail.
pages/base.py contains PageObject pattern implementation for Python.
pages/elements.py contains helper class to define web elements on web pages.
-
Install all requirements:
pip3 install -r requirements
-
Download Selenium WebDriver from https://chromedriver.chromium.org/downloads (choose version which is compatible with your browser)
-
Run tests:
python3 -m pytest -v --driver Chrome --driver-path ~/chrome tests/* or pytest {path_test} -v --html=Reports/reports.html
Note: ~/chrome in this example is the file of Selenium WebDriver downloaded and unarchived on step #2.