Framework Mode - Authentication testing
Folder Structure for Authentication Testing Framework
authentication-testing-project/ ├── tests/ │ ├── login_tests/ │ │ ├── test_valid_login.py │ │ ├── test_invalid_login.py │ │ └── test_password_reset.py │ ├── logout_tests/ │ │ └── test_logout.py │ └── setup_tests.py ├── pages/ │ ├── login_page.py │ ├── dashboard_page.py │ └── reset_password_page.py ├── utils/ │ ├── helpers.py │ ├── validators.py │ └── data_generator.py ├── config/ │ ├── config.yaml │ └── credentials.yaml ├── reports/ │ └── latest_report.html ├── conftest.py └── README.md