Skip to content

Commit 932e0d0

Browse files
authored
Update README.md
1 parent 157997f commit 932e0d0

File tree

1 file changed

+16
-0
lines changed

1 file changed

+16
-0
lines changed

README.md

Lines changed: 16 additions & 0 deletions
Original file line numberDiff line numberDiff 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+

0 commit comments

Comments
 (0)