Framework Mode - Test class using page objects
Folder Structure
project_root/
├── tests/
│ ├── test_login.py
│ └── test_search.py
├── pages/
│ ├── base_page.py
│ ├── login_page.py
│ └── search_page.py
├── utils/
│ ├── driver_factory.py
│ └── config_reader.py
├── resources/
│ └── test_data.json
├── conftest.py
└── pytest.ini