PyTest-BDD-Automation/ ├── features/ │ ├── login.feature # Login scenarios in Gherkin │ ├── checkout.feature # Checkout scenarios in Gherkin │ └── e2e.feature # End-to-end purchase flow ├── pages/ │ ...
pytest-selenium-web-automation/ ├── tests/ │ ├── test_login.py # Login: valid, invalid, locked, logout │ ├── test_inventory.py # Product listing, sorting, add-to-cart │ └── test_cart_checkout.py # ...