File tree Expand file tree Collapse file tree 1 file changed +16
-0
lines changed
Expand file tree Collapse file tree 1 file changed +16
-0
lines changed Original file line number Diff line number Diff line change @@ -21,3 +21,19 @@ A beginner-friendly QA automation project demonstrating end-to-end (E2E) testing
2121- ** Browser** : Firefox (headless mode for CI-friendly runs).
2222
2323## Project Structure
24+ Automated-testing-project/
25+ ├── config/
26+ │ └── config_for_login_page.py # Test credentials (standard_user, locked_out, etc.)
27+ ├── pages/
28+ │ ├── login_page.py # Login page actions (open, enter creds, logout)
29+ │ ├── inventory_page.py # Inventory actions (add to cart, badge count)
30+ │ └── cart_page.py # Cart verification (get items, checkout button)
31+ ├── tests/
32+ │ ├── test_login.py # Login tests (success, errors)
33+ │ └── test_inventory.py # Inventory and cart tests
34+ ├── reports/ # Generated HTML reports (run pytest to create)
35+ ├── docs/ # Screenshots and docs (e.g., report_screenshot.png)
36+ ├── requirements.txt # Dependencies
37+ └── README.md # You're reading it!
38+
39+
You can’t perform that action at this time.
0 commit comments