Framework Mode - Running Selenium in CI pipeline
Folder Structure
selenium-python-project/
├── tests/
│ ├── test_login.py
│ ├── test_checkout.py
│ └── __init__.py
├── pages/
│ ├── login_page.py
│ ├── checkout_page.py
│ └── __init__.py
├── utils/
│ ├── driver_factory.py
│ ├── config.py
│ └── __init__.py
├── reports/
│ └── (test reports generated here)
├── requirements.txt
├── pytest.ini
├── conftest.py
└── .github/
└── workflows/
└── ci.yml