Skip to content

Latest commit

 

History

History
48 lines (28 loc) · 1.13 KB

README.md

File metadata and controls

48 lines (28 loc) · 1.13 KB

Introduction

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

Files

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.

How To Run Tests

  1. Install all requirements:

    pip3 install -r requirements
  2. Download Selenium WebDriver from https://chromedriver.chromium.org/downloads (choose version which is compatible with your browser)

  3. Run tests:

    python3 -m pytest -v --driver Chrome --driver-path ~/chrome tests/*
    
    or
    
    pytest {path_test} -v --html=Reports/reports.html

    alt text

Note: ~/chrome in this example is the file of Selenium WebDriver downloaded and unarchived on step #2.